• So, I had some issues with my sites and had to restore from a backup through my host. I have a few hiccups after the restore, but one hiccup I cannot resolve. I cannot access any of the Jetpack features on ANY of my sites; all I get is a blank white screen. I’ve tried deactivating and reactivating, and even deleting and reinstalling the plugin, but none will resolve the issue. Any ideas?

Viewing 1 replies (of 1 total)
  • Plugin Author Jeremy Herve

    (@jeherve)

    Jetpack Mechanic 🚀

    Could you add the following to your site’s wp-config.php file?

    
    define( 'WP_DEBUG', true );
    
    if ( WP_DEBUG ) {
    
            @error_reporting( E_ALL );
            @ini_set( 'log_errors', true );
            @ini_set( 'log_errors_max_len', '0' );
    
            define( 'WP_DEBUG_LOG', true );
            define( 'WP_DEBUG_DISPLAY', false );
            define( 'CONCATENATE_SCRIPTS', false );
            define( 'SAVEQUERIES', true );
    
    }
    

    Your wp-config.php file may already include a line that says “define(‘WP_DEBUG’, false);”. You can remove it, and replace it by the code above.

    Once you’ve done so, try to reproduce the blank screen, and check the wp-content/debug.log file for errors. You can paste the results here. You can then replace define('WP_DEBUG', true); by define('WP_DEBUG', false); in the code above.

    Thanks!

Viewing 1 replies (of 1 total)

The topic ‘Jetpack Admin Broken after Restore’ is closed to new replies.