You are not logged in.
I have been running this program for some time without any problems. Suddenly when soemone tries to do a zip download they get :
Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 9360613 bytes) in zipfile.php on line 73
If they just download the files separately, they are fine. I have checked my php.ini and I have an appropriate size set. I checked and zip is still listed as a mime file.
Any idea what or why this is happening? I also have checked with my host to see if htey changed any background settings.
TIA
Offline
additional information
I checked with my host. There are no errors with the server or the php.ini file. It is configured correctly. They recently upgraded their php to 5.2 and this caused problems with other php files but did not notice a problem here until now.
Offline
Hello,
an error like this may happen when dealing with large files. I could recommend to enhance the memory allocation setting for the PHP script. To do this please open up the main "index.php" file and enter this line on top of the code:
ini_set( 'memory_limit', '64M' );
The '64M' string means 64 megabytes allocated for this script (your settting now seems to be 32M). Probably you would need a bigger value if the problem persists.
Offline