Allowed Memory Size Exhausted
Nov 7th, 2009 |
When trying to upgrade the church web site to the latest version of WordPress I encountered this problem:
Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 2354671 bytes) in ../public_html/wordpress/wp-includes/http.php on line 1331
After several days of putting it off and simply not upgrading, I finally found the answer at Lancelhoff.com and it was much easier than my last WordPress problem. All I had to do was open the wp-config.php and add the following line below the other define lines:
define(‘WP_MEMORY_LIMIT’, ‘64M’);
See more details about this problem and solution here. Thank you, Lancelhoff!