Friday, October 12, 2012

Increase Maximum Memory Allocation Limit without changing in PHP.INI

Add the following code in your php code if you want to increase maximum memory allocation for any of your specific script which execute to create or modify bigger graphical or other types of files.

ini_set('memory_limit','800M');

800M represents 800 megabytes.

No comments:

Post a Comment