WordPress site goes blank frequently?

My WordPress site goes blank frequently. It goes blank then and there. I don’t see it go blank only after doing a particular action.
My guess is that it may due to some memory issues. Kindly help me out to resolve this error.

Related posts

2 comments

  1. enable debug mode in wp-config.php file:

    error_reporting(E_ALL); ini_set('display_errors', 1); // define in config file 
    
    define( 'WP_DEBUG', false);
    

    to

    define('WP_DEBUG', true);
    

    If there is any error it will display and then try to fix errors

  2. define(‘WP_DEBUG’, true);

    this only hide the error not resolving it.At development stage of any project it should be place true to find out the error in the code

Comments are closed.