How to reduce the memory my image modification script in php uses?
You are currently browsing comments. If you would like to return to the full story, you can read the full entry here: “How to reduce the memory my image modification script in php uses?”.
One Response to “How to reduce the memory my image modification script in php uses?”


You can temporarily change the memory limit for a script through the ini_set php function.
Try, <?php print_r( ini_get_all() ); ?> and find some line relating to memory limit (I can’t remember what it was named as I haven’t used PHP in a long time), then just remove the print_r line and ini_set(‘variable_name’, ‘value’); to raise the limit, e.g. 30M.
Report this comment