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)
More information on "PHP Fatal error: Allowed memory size of 33554432 bytes exhausted" at:


Comprehensive resources for web development and Internet in general.
0 comments:
Post a Comment