Thursday, November 28, 2013

WordPress blank page issue

Solution 1 – Check your plugin settings


SELECT option_value FROM wp_options WHERE option_name = ‘active_plugins’

UPDATE wp_options SET option_value = ” WHERE option_name = ‘active_plugins’


Solution 2 – Check your template settings


SELECT option_name, option_value FROM wp_options WHERE option_name IN (‘template’, ‘stylesheet’)

UPDATE wp_options SET option_value = ‘default’ WHERE option_name IN (‘stylesheet’, ‘template’)


Solution 3 – Check the “key” files


There are two “key” files, wp-config.php and .htaccess, that you need to check.


If you can’t access either the WordPress homepage or the admin page, check the wp-config.php file and make sure that there is no empty lines or other characters after “?>”.


If you have a .htaccess file in your WordPress folder, rename the .htaccess file to see if it rectifies the blank page issue. If so, you’ll need to review the settings in the .htaccess file.


 


Solution 4 – Enable error display

php_flag display_errors on


 



WordPress blank page issue

No comments:

Post a Comment

Please mention your comments.......