• This morning I got the email saying that the backup failed. It managed to create a local backup but it failed to upload it to Google Drive. I tried manual backup but the same thing happened. It created archives but broke while trying to upload. I tried manual backup one more time and now it just gives me a blank page, nothing happens. This is the .log file I got when it failed the first time:

    2013-09-11    08:00:04    NOTICE    Environment: Backup 2.2; WordPress 3.6; PHP 5.4.4-14+deb7u4; SAPI apache2handler; OS Linux; ZIP 1.9.1; CURL 7.26.0; Time limit 600s; Memory limit 256M
    2013-09-11    08:00:04    NOTICE    Attempting to dump database.
    2013-09-11    08:00:05    NOTICE    The database dump was completed successfully in 1.349 seconds.
    2013-09-11    08:00:05    NOTICE    Attempting to create archive 'Just-Imagine-Daily-Dose-of-Creativity-msy604.zip'.
    2013-09-11    08:01:22    NOTICE    Successfully archived 28,067 files in 76.057 seconds. Archive file size is 747.64 MB.
    2013-09-11    08:01:22    NOTICE    Attempting to upload archive to Google Drive.
    2013-09-11    08:01:24    NOTICE    Uploading file with title 'Just Imagine - Daily Dose of Creativity (msy604)'.
    2013-09-11    08:02:43    ERROR    Operation timed out after 60000 milliseconds with 0 bytes received
    2013-09-11    08:02:43    WARNING    The upload process timed out but can be resumed. Managed to upload 1.2% of the file. The upload speed was 197 kB/s.
    2013-09-11    08:02:44    NOTICE    Attempting to resume upload.
    2013-09-11    08:02:44    NOTICE    Uploading file with title 'Just Imagine - Daily Dose of Creativity (msy604)'.
    2013-09-11    08:06:19    ERROR    Operation timed out after 60001 milliseconds with 0 bytes received
    2013-09-11    08:06:19    WARNING    The upload process timed out but can be resumed. Managed to upload 8.99% of the file. The upload speed was 798 kB/s.
    2013-09-11    08:06:20    NOTICE    Attempting to resume upload.
    2013-09-11    08:06:20    NOTICE    Uploading file with title 'Just Imagine - Daily Dose of Creativity (msy604)'.
    2013-09-11    08:07:27    ERROR    Operation timed out after 60000 milliseconds with 0 bytes received
    2013-09-11    08:07:27    WARNING    The upload process timed out but can be resumed. Managed to upload 9.43% of the file. The upload speed was 502 kB/s.

    [Moderator Note: Please post log files between backticks or use the code button.]

    Backup for WordPress

    I don’t know what could cause this… Any ideas?

    https://www.ads-software.com/plugins/backup/

Viewing 1 replies (of 1 total)
  • Thread Starter teodorsavic

    (@teodorsavic)

    SOLUTION!!!:
    Go to plugin editor and find this:

    if ( get_transient( ‘backup_lock’ ) )
    exit; // Exit if another backup process is running.

    now add // in front of exit so it looks like this:

    if ( get_transient( ‘backup_lock’ ) )
    // exit; // Exit if another backup process is running.

    it should work now.

    A note to developer: Is there a chance you could make the plugin extract the database in gzip format? It would save a lot of MBs on websites with larger databases. Also, gzip export uses the INSERT statement without column names and it would solve database error with a few plugins (e.g. wysija newsletter)

Viewing 1 replies (of 1 total)
  • The topic ‘Plugin broke out of a sudden’ is closed to new replies.