• greyelf7

    (@greyelf7)


    After upgrading to the latest version along with the latest WordPress version all I see when editing a post is a blank page. If Jetpack is disabled everything works fine. I also tried to disable all the features I use in Jetpack, but still a blank page when editing posts.

    Anyone seen anything similar?

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

    (@jeherve)

    Jetpack Mechanic 🚀

    Could you try to deactivate and delete the Jetpack plugin, and then install it again from scratch?

    If that doesn’t help, 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, reload the post editor, and then 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.

    Let me know what you find!

Viewing 1 replies (of 1 total)

The topic ‘Blank page on Edit post’ is closed to new replies.