Migration, Backup, Staging – WPvivid - Version 0.9.16

Version Description

  • Fixed a fatal error occurred during website transfer.
Download this release

Release Info

Developer wpvivid
Plugin Icon 128x128 Migration, Backup, Staging – WPvivid
Version 0.9.16
Comparing to
See all releases

Code changes from version 0.9.15 to 0.9.16

includes/class-wpvivid-migrate.php CHANGED
@@ -318,7 +318,7 @@ class WPvivid_Migrate
318
 
319
  $backup_options = stripslashes($_POST['backup_options']);
320
  $backup_options = json_decode($backup_options, true);
321
- $backup['backup_files'] = $backup_options['backup_type'];
322
  $backup['local'] = 0;
323
  $backup['remote'] = 1;
324
  $backup['ismerge'] = 1;
@@ -369,7 +369,7 @@ class WPvivid_Migrate
369
  }
370
  $backup_options = stripslashes($_POST['backup_options']);
371
  $backup_options = json_decode($backup_options, true);
372
- $backup['backup_files']= $backup_options['backup_type'];
373
  $backup['local']=1;
374
  $backup['remote']=0;
375
  $backup['ismerge']=1;
318
 
319
  $backup_options = stripslashes($_POST['backup_options']);
320
  $backup_options = json_decode($backup_options, true);
321
+ $backup['backup_files'] = $backup_options['transfer_type'];
322
  $backup['local'] = 0;
323
  $backup['remote'] = 1;
324
  $backup['ismerge'] = 1;
369
  }
370
  $backup_options = stripslashes($_POST['backup_options']);
371
  $backup_options = json_decode($backup_options, true);
372
+ $backup['backup_files']= $backup_options['transfer_type'];
373
  $backup['local']=1;
374
  $backup['remote']=0;
375
  $backup['ismerge']=1;
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: transfer, move, duplicate, clone, backup, migrate, restore, auto backup, c
4
  Requires at least: 4.5
5
  Tested up to: 5.1
6
  Requires PHP: 5.3
7
- Stable tag: 0.9.15
8
  License: GPLv3 or later
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
10
 
@@ -142,6 +142,8 @@ Please try to contact your web hosting provider for changing PHP memory limit, o
142
  Feel free to let us know how we can help using the [support forum](https://wordpress.org/support/plugin/wpvivid-backuprestore) for the plugin on WordPress.org or our [contact form](https://wpvivid.com/contact-us). You can also reach us with a direct message on [Twitter](https://twitter.com/WPvividcom).
143
 
144
  == Changelog ==
 
 
145
  = 0.9.15 =
146
  - Fixed: Scheduled backups failed to run as configured after the last update.
147
  - Improved the Restore UI.
4
  Requires at least: 4.5
5
  Tested up to: 5.1
6
  Requires PHP: 5.3
7
+ Stable tag: 0.9.16
8
  License: GPLv3 or later
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
10
 
142
  Feel free to let us know how we can help using the [support forum](https://wordpress.org/support/plugin/wpvivid-backuprestore) for the plugin on WordPress.org or our [contact form](https://wpvivid.com/contact-us). You can also reach us with a direct message on [Twitter](https://twitter.com/WPvividcom).
143
 
144
  == Changelog ==
145
+ = 0.9.16 =
146
+ - Fixed a fatal error occurred during website transfer.
147
  = 0.9.15 =
148
  - Fixed: Scheduled backups failed to run as configured after the last update.
149
  - Improved the Restore UI.
wpvivid-backuprestore.php CHANGED
@@ -7,7 +7,7 @@
7
  * @wordpress-plugin
8
  * Plugin Name: WPvivid Backup Plugin
9
  * Description: Transfer site to a new domain. Off-site backup schedule, transfer backups to leading remote storage (dropbox, onedrive, google drive etc). All in one.
10
- * Version: 0.9.15
11
  * Author: wpvivid.com
12
  * Author URI: https://wpvivid.com
13
  * License: GPL-3.0+
@@ -21,7 +21,7 @@ if ( ! defined( 'WPINC' ) ) {
21
  die;
22
  }
23
 
24
- define( 'WPVIVID_PLUGIN_VERSION', '0.9.15' );
25
  //
26
  define('WPVIVID_RESTORE_INIT','init');
27
  define('WPVIVID_RESTORE_READY','ready');
7
  * @wordpress-plugin
8
  * Plugin Name: WPvivid Backup Plugin
9
  * Description: Transfer site to a new domain. Off-site backup schedule, transfer backups to leading remote storage (dropbox, onedrive, google drive etc). All in one.
10
+ * Version: 0.9.16
11
  * Author: wpvivid.com
12
  * Author URI: https://wpvivid.com
13
  * License: GPL-3.0+
21
  die;
22
  }
23
 
24
+ define( 'WPVIVID_PLUGIN_VERSION', '0.9.16' );
25
  //
26
  define('WPVIVID_RESTORE_INIT','init');
27
  define('WPVIVID_RESTORE_READY','ready');