Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Gaurav Aggarwal

    (@logiclord)

    You have very small run time for a backup size of your installation plz refer to discussion on

    http://logiclord.com/backup-and-move

    I was having the problem where it would say everything was successful, and the server files were copied to the backup directory, but no .zip was created, and no database file was made. I found the problem to be that there was a large table (50k rows of data) in the same database as my WP tables, which it was trying to back up and caused a memory error.
    I fixed it by adding a condition to the backup_and_move_backup_tables function:
    foreach($tables as $table) {
    //ONLY BACKUP THIS SITE’S TABLES!
    if(strpos($table, $wpdb->base_prefix) !== false){

    This ensures that only the table in the current site are backed up, and avoided my memory issue. Hope this helps someone!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Backup and Move Plugin] didn't work’ is closed to new replies.