[12-Sep-2007 11:41:53] PHP Fatal error: Allowed memory size
of 16777216 bytes exhausted (tried to allocate 10 bytes) in...
.... on line 23687
Solution:
ini_set("memory_limit", "32M");
or php.ini
memory_limit = 32M ; Maximum amount of memory a script may consume
of 16777216 bytes exhausted (tried to allocate 10 bytes) in...
.... on line 23687
Solution:
ini_set("memory_limit", "32M");
or php.ini
memory_limit = 32M ; Maximum amount of memory a script may consume