Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 2560 bytes) in /home/cp/public_html/forums/sources/components_public/gallery/lib/lib_image.php on line 430
I know my file is under 500kb, it probably should be less, but to get this error seems odd!
The code 'shouldn't' need THAT much memory. :laugh:
-------------------------------------------------------------------
PHP Fatal error: Allowed memory size of 33554432 bytes exhausted
This form of error usually occurs when:
I know my file is under 500kb, it probably should be less, but to get this error seems odd!
The code 'shouldn't' need THAT much memory. :laugh:
-------------------------------------------------------------------
PHP Fatal error: Allowed memory size of 33554432 bytes exhausted
This form of error usually occurs when:
- your script grabs just over the 8MB default memory limit of PHP
- there's a bug in your script
- the output is very large
- optimize your script so that it will not eat up the maximum memory limit
- find bugs (memory leaks) in your script
- minimize the output of your script
- increase the memory_limit setting in php.ini or directly in your php script by using the ini_set() function
- upgrade to PHP 5 (some tried to install a PHP app that would not work even when limit is set to 300M)