Fatal error: Allowed memory size of

Error : Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 2420 bytes) in /home/username/public_html/thumbnail.php on line 49
Solution : To change the memory limit for one specific script by including a line such as this at the top of the script:
Open the file /home/username/public_html/thumbnail.php
and
add the following  code below the code <?php ”
ini_set("memory_limit","128M");
Done

Leave a Comment