Migration, Backup, Staging – WPvivid - Version 0.9.73

Version Description

  • Fixed some bugs in the plugin code and UI.
  • Optimized the plugin code.
  • Successfully tested with WordPress 6.0.
Download this release

Release Info

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

Code changes from version 0.9.72 to 0.9.73

admin/class-wpvivid-admin.php CHANGED
@@ -67,7 +67,7 @@ class WPvivid_Admin {
67
  add_action('wpvivid_before_setup_page',array($this,'show_add_my_review'));
68
  add_action('wpvivid_before_setup_page',array($this,'check_extensions'));
69
  add_action('wpvivid_before_setup_page',array($this,'check_amazons3'));
70
- add_action('wpvivid_before_setup_page',array($this,'check_dropbox'));
71
  add_action('wpvivid_before_setup_page',array($this,'init_js_var'));
72
 
73
  add_filter('wpvivid_add_log_tab_page', array($this, 'add_log_tab_page'), 10);
67
  add_action('wpvivid_before_setup_page',array($this,'show_add_my_review'));
68
  add_action('wpvivid_before_setup_page',array($this,'check_extensions'));
69
  add_action('wpvivid_before_setup_page',array($this,'check_amazons3'));
70
+ //add_action('wpvivid_before_setup_page',array($this,'check_dropbox'));
71
  add_action('wpvivid_before_setup_page',array($this,'init_js_var'));
72
 
73
  add_filter('wpvivid_add_log_tab_page', array($this, 'add_log_tab_page'), 10);
includes/class-wpvivid-backuplist.php CHANGED
@@ -186,7 +186,7 @@ class WPvivid_Backuplist
186
  $oldest=0;
187
  foreach ($list as $k=>$backup)
188
  {
189
- if(!array_key_exists('lock',$backup))
190
  {
191
  if ($oldest == 0)
192
  {
186
  $oldest=0;
187
  foreach ($list as $k=>$backup)
188
  {
189
+ if(!array_key_exists('lock',$backup) || (isset($backup['lock']) && $backup['lock'] == '0'))
190
  {
191
  if ($oldest == 0)
192
  {
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: move, clone, migrate, staging, backup, restore, auto backup, cloud backup
4
  Requires at least: 4.5
5
  Tested up to: 6.0
6
  Requires PHP: 5.3
7
- Stable tag: 0.9.72
8
  License: GPLv3 or later
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
10
 
@@ -196,6 +196,10 @@ Thank you so much for translating WPvivid Backup Plugin to your languages!
196
  * [Khoi](https://profiles.wordpress.org/khoipro/) (Vietnamese)
197
  * [Jairo Ochoa](https://profiles.wordpress.org/jairoochoa/) and [Carlos Macías](https://profiles.wordpress.org/cmacias/) (Galician)
198
  == Changelog ==
 
 
 
 
199
  = 0.9.72 =
200
  - Improved the upload function. Now when uploading a zip(part) failed, you will be notified immediately, and you can continue to upload the problematic zip rather than uploading all zips again.
201
  - Added: Cloud storage credentials in the database are encrypted now.
4
  Requires at least: 4.5
5
  Tested up to: 6.0
6
  Requires PHP: 5.3
7
+ Stable tag: 0.9.73
8
  License: GPLv3 or later
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
10
 
196
  * [Khoi](https://profiles.wordpress.org/khoipro/) (Vietnamese)
197
  * [Jairo Ochoa](https://profiles.wordpress.org/jairoochoa/) and [Carlos Macías](https://profiles.wordpress.org/cmacias/) (Galician)
198
  == Changelog ==
199
+ = 0.9.73 =
200
+ - Fixed some bugs in the plugin code and UI.
201
+ - Optimized the plugin code.
202
+ - Successfully tested with WordPress 6.0.
203
  = 0.9.72 =
204
  - Improved the upload function. Now when uploading a zip(part) failed, you will be notified immediately, and you can continue to upload the problematic zip rather than uploading all zips again.
205
  - Added: Cloud storage credentials in the database are encrypted now.
wpvivid-backuprestore.php CHANGED
@@ -7,7 +7,7 @@
7
  * @wordpress-plugin
8
  * Plugin Name: WPvivid Backup Plugin
9
  * Description: Clone or copy WP sites then move or migrate them to new host (new domain), schedule backups, transfer backups to leading remote storage. All in one.
10
- * Version: 0.9.72
11
  * Author: WPvivid Team
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.72' );
25
  //
26
  define('WPVIVID_RESTORE_INIT','init');
27
  define('WPVIVID_RESTORE_READY','ready');
7
  * @wordpress-plugin
8
  * Plugin Name: WPvivid Backup Plugin
9
  * Description: Clone or copy WP sites then move or migrate them to new host (new domain), schedule backups, transfer backups to leading remote storage. All in one.
10
+ * Version: 0.9.73
11
  * Author: WPvivid Team
12
  * Author URI: https://wpvivid.com
13
  * License: GPL-3.0+
21
  die;
22
  }
23
 
24
+ define( 'WPVIVID_PLUGIN_VERSION', '0.9.73' );
25
  //
26
  define('WPVIVID_RESTORE_INIT','init');
27
  define('WPVIVID_RESTORE_READY','ready');