I removed the plugin but then I won’t be able to use the plugin right
That’s correct, but it will give you access to your dashboard back.
Once you can access your dashboard again, I’d suggest that you try to install Jetpack again, from scratch. If you still run into the error, you could try adding 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 accessing your dashboard again to trigger the error. Then, check the wp-content/debug.log
file for errors, and paste the results here. You can then replace define('WP_DEBUG', true);
by define('WP_DEBUG', false);
in the code above.
Thanks!