Version Description
= 3.0.3 = Please check changelog!
Download this release
Release Info
Developer | watchful |
Plugin | XCloner – Backup and Restore |
Version | 4.2.8 |
Comparing to | |
See all releases |
Code changes from version 4.2.7 to 4.2.8
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.
|
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,16 +115,10 @@ Of course, schedules can be adjusted accordingly to how often you update your si
|
|
115 |
|
116 |
== Changelog ==
|
117 |
|
118 |
-
* 4.2.
|
119 |
|
120 |
* scheduler fix call init
|
121 |
-
|
122 |
-
* 4.2.6 *
|
123 |
-
|
124 |
* google drive support fix
|
125 |
-
|
126 |
-
* 4.2.5 *
|
127 |
-
|
128 |
* PHP 7.1 minimum requirement
|
129 |
|
130 |
* 4.2.4 *
|
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.8
|
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.8 *
|
119 |
|
120 |
* scheduler fix call init
|
|
|
|
|
|
|
121 |
* google drive support fix
|
|
|
|
|
|
|
122 |
* PHP 7.1 minimum requirement
|
123 |
|
124 |
* 4.2.4 *
|
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('
|
785 |
-
$adapter = new
|
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.
|
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.8
|
19 |
* Author: watchful
|
20 |
* Author URI: https://watchful.net/
|
21 |
* License: GPL-2.0+
|