[Zope] ZipFOlder - ZIP file too big?

Jaroslav Lukesh lsh@wo.cz
Wed, 19 Feb 2003 07:57:09 -0000


| Odes=EDlatel: Jaroslav Lukesh <lukesh@seznam.cz>
| I use successfully ZipFolder (at full Python + Zope 2.5.1 / Win32) but
| after few minutes of upload 93MB file Zope says me: Zip file too big an=
d
| some other errors.
|=20
| Does have somebody know which size is limit for ZipFolder?

OK, self-reply:

In ZipImporter.py is size defined:

 # To be overwritten:
    =20
    def max_zipfile_size(self):
        """return maximum size for zip files. Default 4MB"""
        return 4*1024*1024;=20

So when I restart Zope, I will try to change it.

JL.