Quantcast
Channel: Topic Tag: error 500 | WordPress.org
Viewing all articles
Browse latest Browse all 1704

Jeremy Herve on "[Plugin: Jetpack by WordPress.com] Error "an error occurred while processing this directive""

$
0
0

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 );

}

Once you've done so, try publishing a new post when Jetpack is active, 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.

Thanks!


Viewing all articles
Browse latest Browse all 1704

Trending Articles