PHP Allowed Memory Size Exchausted Fatal Error
A functional PHP script returns the following error either on the web page or in Apache error log file when it exchausted and used up the default memory requirement of 8 MB memory allocation:
PHP Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate … bytes) in …
The error normally occurs when PHP tries to process a big database records or when importing or exporting. To solve the error, there are two resolutions. One is to change and increase the memory limit of the particular PHP script by adding or including an additional line at the top of the script:
ini_set(“memory_limit”,”16M”);
You can assign the memory limit to any amount you like by changing the 16M to other number, such as 12M or 24M. 16M will set the memory limit to 16 megabytes. If this doesn’t work and the PHP error still appearing, increase the memory limit until the PHP scripts running perfectly or the limit of your system hardware.
To change the memory allocation limit permanently for all PHP scripts running on the server, modify the PHP.INI configuration file of the server (location depending on your OS and installation method). Search for memory_limit after opening the file in an editor. If the memory_limit doesn’t exist, add the following line. If it’s there, modify the value of the memory_limit:
memory_limit = 12M
The 12M sets the limit to 12 megabytes (12582912 bytes). Change to the value you desirable.
An alternative way is to modify your PHP scripts that generate the error for more efficiency and better data handling.
Related Articles
- Fix Fatal Error Call to Function get_link() on Non-Object in WordPress 2.8 Dashboard with Technorati Incoming Links RSS
- Fix Call to Undefined Function read_global() Error in Google AdSense Mobile Content PHP Ad Code
- WordPress Call To Undefined Function get_currentuserinfo() PHP Error
- Oracle EXP-00091 Error When Export Database
- Spb Finance Synchronization Error in Microsoft ActiveSync
- Joomla Direct Access to This Location Is Not Allowed Error
- ORA-00942 Table or View Does Not Exist Oracle Error
- PHP Parse Error: syntax error, unexpected $end
- How to Customize, Modify or Change WordPress Database Connection Error Page
- Set Allowed Sites for Google AdSense Publisher Account










































August 12th, 2009 00:08
To catch PHP’s fatal errors, like “Out of memory” or “PHP Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate … bytes) in”, see here : http://php.net/manual/en/function.set-error-handler.php#88401
April 16th, 2009 17:31
I want to increase my memory limit in php server where is i write the script ini_set(”memory_limit”,”16M”);
If u have any other option then send me plz.
November 8th, 2008 08:41
THANKS VERY MUCH….
May 22nd, 2008 11:15
I have ever got the same problem, but this ini_set(”memory_limit”,”12M”); line could not solved my problems. I just removed all waste plugin. And walah, It worked.
May 1st, 2008 13:34
where is PHP.INI location???
March 6th, 2008 10:32
After trying many solutions in order to get Wordpress to co-operate with Microsoft live writer. I finally came here and after editing “/wp-admin/includes/image.php”, the problem was solved.
I just needed to add…
ini_set(“memory_limit”,”12M”);
… right under the <?php tag
February 16th, 2008 19:50
thanks
January 31st, 2008 11:20
Exactly what I was looking for to solve my problems! Thanks for the simple and clear instruction!
January 27th, 2008 17:35
I follow your instruction by modifying php.ini and it works. Thanks for sharing this information.
December 19th, 2007 09:58
I have same problem with yours. Can this problem solved by editing any wordpress file? or….
without configuring php.ini?
thanks before