Viewing 1 replies (of 1 total)
  • I would recommend enabling WP_DEBUG in your wp-config.php file to see if there are any errors being logged.

    http://codex.wordpress.org/Debugging_in_WordPress

    You can change this existing line from false to true:

    define('WP_DEBUG', false);  // this is what it looks like now
    define('WP_DEBUG', true);   // change to this

    You can also add these two lines to ensure errors are logged, not displayed to users:

    define('WP_DEBUG_LOG', true);
    define('WP_DEBUG_DISPLAY', false);

Viewing 1 replies (of 1 total)

The topic ‘Blank Dashboard ( white screen)’ is closed to new replies.