Support » Plugin: BackUpWordPress » Everything gone after installing this plugin!

  • Resolved Erwin

    (@baksteen)


    I have just installed this plugin and after I activated it all my plugins got an error, saying WordPress disabled them or whatever.

    I go to my plugin page and all my plugins are gone.

    I deleted this backup plugin but that didn’t work. Restored a backup from yesterday. Didn’t work either.

    My website gets a Error500 message now.

    Thanks for ruining my website.

    https://wordpress.org/plugins/backupwordpress/

Viewing 1 replies (of 1 total)
  • Hi @baksteen,

    Sorry to hear of the problem you are having.

    Can you please try enabling WP_DEBUG mode and debug logging? To do this, just go to wp-config.php include this:

    define('WP_DEBUG',true);
    define('WP_DEBUG_LOG',true);

    You might already have a line for WP_DEBUG, so just make sure it’s set to true. This will create a log file under wp-content/debug.log with detailed information.

    If you’d like to avoid end users seeing error messages, you can include this as well:

    @ini_set('display_errors',0);
    define('WP_DEBUG_DISPLAY', false);

    This will prevent errors from being displayed, but you can still find them in the log file. For information on this, checkout this wpmu.org article.

    Let me know what errors if any you are getting so that i can help you to resolve this issue.

    Kind Regards,
    Vinod Dalvi

Viewing 1 replies (of 1 total)
  • The topic ‘Everything gone after installing this plugin!’ is closed to new replies.