• I am disappointed with Jetpack. I constantly find myself having to delete it due to getting fatal error messages. It conflicts with buddy press components, and several other plugins that I have to have on mysite. I have decided to just give up until the community figures it out.

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

    (@jeherve)

    Jetpack Mechanic 🚀

    Thanks for the feedback!

    fatal error messages.
    […]
    It conflicts with buddy press components, and several other plugins that I have to have on mysite.

    We’d be happy to get this fixed for you, but we would need to know about those conflicts in order to fix them.

    If you’re willing to give Jetpack another try, could you try the following in order to find out more about the problem?

    1. 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.

    2. Install a plugin that you know conflicts with Jetpack.
    3. Install Jetpack.
    4. Connect it to WordPress.com.
    5. In Jetpack > Settings, activate each module, one at a time, until you find the module that conflicts with your plugin and triggers that fatal error.
    6. Check the wp-content/debug.log file for errors.
    7. Copy the error details appearing there.
    8. Replace define('WP_DEBUG', true); by define('WP_DEBUG', false); in the code above.
    9. Create a new forum thread here and provide all the details you gathered about the conflict: what plugins you use, what module conflicts with what plugin, what error appears in your debug log.

    Once we have all that information, we should be able to investigate and get this fixed!

    If you’d rather not go through all those steps, could you give me some examples of plugins where you experienced conflicts, and what modules you used on the site so I can try to reproduce and investigate myself?

    Thanks!

Viewing 1 replies (of 1 total)

The topic ‘Bugs Galore’ is closed to new replies.