XCloner – Backup and Restore - Version 4.2.6

Version Description

= 3.0.3 = Please check changelog!

Download this release

Release Info

Developer watchful
Plugin Icon 128x128 XCloner – Backup and Restore
Version 4.2.6
Comparing to
See all releases

Code changes from version 4.2.5 to 4.2.6

README.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.xcloner.com
4
  Tags: backup, database backup, cloud backup, WordPress backup, WordPress migration
5
  Requires at least: 3.0.1
6
  Tested up to: 5.4
7
- Stable tag: 4.2.5
8
 
9
  XCloner is a backup plugin that allows you to safely back up and restore your WordPress sites. You can send site backups to SFTP, Dropbox, Amazon, Google Drive, Backblaze and other locations.
10
 
@@ -115,6 +115,10 @@ Of course, schedules can be adjusted accordingly to how often you update your si
115
 
116
  == Changelog ==
117
 
 
 
 
 
118
  * 4.2.5 *
119
 
120
  * PHP 7.1 minimum requirement
4
  Tags: backup, database backup, cloud backup, WordPress backup, WordPress migration
5
  Requires at least: 3.0.1
6
  Tested up to: 5.4
7
+ Stable tag: 4.2.6
8
 
9
  XCloner is a backup plugin that allows you to safely back up and restore your WordPress sites. You can send site backups to SFTP, Dropbox, Amazon, Google Drive, Backblaze and other locations.
10
 
115
 
116
  == Changelog ==
117
 
118
+ * 4.2.6 *
119
+
120
+ * google drive support fix
121
+
122
  * 4.2.5 *
123
 
124
  * PHP 7.1 minimum requirement
vendor/watchfulli/xcloner-core/src/Xcloner_Remote_Storage.php CHANGED
@@ -781,8 +781,8 @@ class Xcloner_Remote_Storage
781
 
782
  $this->logger->info(sprintf("Using target folder with ID %s on the remote storage", $folderID));
783
 
784
- if (class_exists('XCloner_Google_Drive_Adapter')) {
785
- $adapter = new XCloner_Google_Drive_Adapter($service, $folderID);
786
  } else {
787
  $adapter = new \Hypweb\Flysystem\GoogleDrive\GoogleDriveAdapter($service, $folderID);
788
  }
781
 
782
  $this->logger->info(sprintf("Using target folder with ID %s on the remote storage", $folderID));
783
 
784
+ if (class_exists('\XCloner_Google_Drive_Adapter')) {
785
+ $adapter = new \XCloner_Google_Drive_Adapter($service, $folderID);
786
  } else {
787
  $adapter = new \Hypweb\Flysystem\GoogleDrive\GoogleDriveAdapter($service, $folderID);
788
  }
xcloner.php CHANGED
@@ -15,7 +15,7 @@
15
  * Plugin Name: XCloner - Site Backup and Restore
16
  * Plugin URI: https://xcloner.com/
17
  * Description: XCloner is a tool that will help you manage your website backups, generate/restore/move so your website will be always secured! With XCloner you will be able to clone your site to any other location with just a few clicks, as well as transfer the backup archives to remote FTP, SFTP, DropBox, Amazon S3, Google Drive, WebDAV, Backblaze, Azure accounts.
18
- * Version: 4.2.5
19
  * Author: watchful
20
  * Author URI: https://watchful.net/
21
  * License: GPL-2.0+
15
  * Plugin Name: XCloner - Site Backup and Restore
16
  * Plugin URI: https://xcloner.com/
17
  * Description: XCloner is a tool that will help you manage your website backups, generate/restore/move so your website will be always secured! With XCloner you will be able to clone your site to any other location with just a few clicks, as well as transfer the backup archives to remote FTP, SFTP, DropBox, Amazon S3, Google Drive, WebDAV, Backblaze, Azure accounts.
18
+ * Version: 4.2.6
19
  * Author: watchful
20
  * Author URI: https://watchful.net/
21
  * License: GPL-2.0+