Changing PHP Memory Limit via .htaccess

Changing PHP Memory Limit via .htaccess

If you get an error such as:



Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 317560 bytes)



On your PHP scripts, you can fix it with a line in your .htaccess reading:



php_value memory_limit 12M



Simply modify the 12M to the desired amount of PHP memory.