Page 1 of 1

Different Fixes for WORDPRESS FATAL MEMORY ERRORS

Posted: Tue Sep 04, 2012 9:47 am
by a24uall
BASIC STEPS

1 ) Check memory limit in php.ini and change that if required.
memory_limit = 512M
2) Try moving plugins folder and also theme folder and see.

3) If you can login to admin page try changing the theme to the default one. if you cannot login to wp-admin you can find the active theme name from the database and move that. Then rename the default wordpress theme file as the current theme file and try accessing the website.

Re: Different Fixes for WORDPRESS FATAL MEMORY ERRORS

Posted: Tue Sep 04, 2012 9:52 am
by a24uall
Once I got a FATAL MEMORY ERROR while accessing the wordpress website and the reason was that php.ini has memory limit set as 512M and wp.config had a different value set as mentioned below.
("WP_MEMORY_LIMIT", 1024M)
When i changed the above value to match the memory_limit value in php.ini, Fatal memory error vanished.