Quote:
Originally Posted by angkor408
For some reason I get this message when I tied upload in bulk.
Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 23532 bytes) in /home2/khmerclu/public_html/arcade/functions/tar.php on line 797
Thx
|
Quote:
Originally Posted by Hippy
I don't know enough about the tar.php
but your error sounds like a server issue..
did you contact your host to see what they say?
|
If you run into this memory issue, you need to increase the size of the Memory in your
php.ini file, normally found in your /public_html/.
First make a COPY of the PHP.INI file, so you can RESTORE it.
Open "EDIT" the file and do a search for MEMORY, you should see the max allowed, increase it to handle a bit more than the error states it needs. Save it and re-upload the file. Should work fine now.
EXAMPLE:
Code:
;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;
max_execution_time = 600 ; Maximum execution time of each script, in seconds
max_input_time = 600 ; Maximum amount of time each script may spend parsing request data
memory_limit = 96M ; Maximum amount of memory a script may consume (16MB)
Go back to the PHP.INI file and put it back the way it was. Shared servers don't like you to have this over 64mb I believe.