• I have just changed the theme on my wordpress site, i must have done something in the nav.php because after that the screen just goes white. and i cant even rectify it because i can not log in?

    some help please???

Viewing 1 replies (of 1 total)
  • Hey there,

    The best thing to do would be to use FTP or your cPanel file manager and then go and upload a new nav.php that you haven’t broken ??

    To see what’s causing the error you can use WP_DEBUG. To output the WordPress debugging information you can open your wp-config.php file and change:

    define('WP_DEBUG', false);

    To:

    define('WP_DEBUG', true);

    You can also have these errors output to a debug.log file located in your /wp-content/ folder, to do this add the following to your wp-config.php file:

    define('WP_DEBUG_LOG', true);

    Using WP_DEBUG would put the errors on the site, you can hide those and just have them out put the WP_DEBUG_LOG (if set to true) by using this as well:

    define('WP_DEBUG_DISPLAY', false);

    Let me know how you get on.

    Take care.

Viewing 1 replies (of 1 total)
  • The topic ‘WHITE SCREEN – CAN NOT LOG IN’ is closed to new replies.