• Resolved 1314dreamer

    (@1314dreamer)


    Since the update of the jetpack, I have been experiencing the error on the site.
    An error of type E_ERROR was caused in line 80 of the file /home4/rosyfant/public_html/wp-content/plugins/jetpack/modules/calypsoify/class.jetpack-calypsoify.php. Error message: Uncaught Error: Class ‘A8C_WPCOM_Masterbar’ not found in /home4/rosyfant/public_html/wp-content/plugins/jetpack/modules/calypsoify/class.jetpack-calypsoify.php:80 Stack trace: #0 /home4/rosyfant/public_html/wp-content/plugins/jetpack/modules/calypsoify/class.jetpack-calypsoify.php(56): Jetpack_Calypsoify->mock_masterbar_activation() #1 /home4/rosyfant/public_html/wp-includes/class-wp-hook.php(287): Jetpack_Calypsoify->setup_admin(”) #2 /home4/rosyfant/public_html/wp-includes/class-wp-hook.php(311): WP_Hook->apply_filters(NULL, Array) #3 /home4/rosyfant/public_html/wp-includes/plugin.php(478): WP_Hook->do_action(Array) #4 /home4/rosyfant/public_html/wp-admin/admin.php(175): do_action(‘admin_init’) #5 /home4/rosyfant/public_html/wp-admin/plugins.php(10): require_once(‘/home4/rosyfant…’) #6 {main} thrown

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • I am having this exact same issue on my end. I hope they get this resolved soon.

    If you deactivate JetPack by getting in through WordPress’s recovery mode (there is a link in the email), you will be able to get into your back end via your hosting platform and you can perform your regular blog writing and page editing from there, its just laid out differently than JetPack.

    Hi @kinsleycustomguitars and @1314dreamer. Thanks for reporting.

    This is a known issue in the 9.2 release. Until a point release is available, you should be able to solve the issue on your site by deactivating Calypsoify.

    You can do that by visiting the main wp-admin page (wp-admin/index.php), or any wp-admin page by adding ?calypsoify=0 to the end of the URL.

    Alternatively, you can also use the following code snippet as a quick way to solve the issue:

    add_filter( 'jetpack_tools_to_include', function( $tools ) {
            $index = array_search(
                    'calypsoify/class.jetpack-calypsoify.php',
                    $tools
            );
            if ( $index ) {
                    unset( $tools[$index] );
            }
            return $tools;
    } );

    Let us know if you have any other questions.

    • This reply was modified 4 years, 3 months ago by Tracy.
    • This reply was modified 4 years, 3 months ago by Tracy.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Update error’ is closed to new replies.