WordPress Memory Exhausted Error
Posted by admin, under WordpressWordPress Memory Exhausted Error is a common problem WordPress bloggers face. Usually users end up with following error when they try to use Auto upgrader to upgrade blog to next version.
Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 2975573 bytes) in /home/nikoncam/public_html/canonsx30.info/blog/wp-includes/class-http.php on line 1408
Now its not hard to sort out this problem. If you are using a shard host for your blog then there are 2 methods. First try the easy method. Open your wp-config and do this change,
define(‘WP_MEMORY_LIMIT’, ’64M’);
If this doesn’t work then there is another way. You have to create a php.ini file and upload it to your root folder (inside public_html). before upload add this line,
memory_limit=24m
And then you need to add another line to your .htaccess file in root folder. Make sure change ‘username’ with username of your hosting account,
suPHP_ConfigPath /home/username/public_html
If this didn’t work contact your hosting provider. Don’t keep your WordPress blogs without updating.


