PHP ERROR Allowed memory size of 8388608 bytes exhausted
Filed Under (php) by admin on 27-11-2009
Tagged Under : php
Error:
PHP ERROR Allowed memory size of 8388608 bytes exhausted
In php it means your memory use has exceeded the memory limit set by to execute a function.
Solution:
Type this above the function you are trying to excute
ini_set(â€memory_limitâ€,â€16Mâ€);
or any desired memory size you wish


