Version Description
- 2015-12-30 =
- Fixed: A bug introduced in 2.2.1 which caused the file archiver to use the wrong zip library on installations where ziparchive is disabled.
Download this release
Release Info
| Developer | wpacademy |
| Plugin | |
| Version | 2.2.2 |
| Comparing to | |
| See all releases | |
Code changes from version 2.2.1 to 2.2.2
- lib/functions.php +1 -0
- readme.txt +5 -2
- wpclone.php +1 -1
lib/functions.php
CHANGED
|
@@ -541,6 +541,7 @@ function wpa_unzip($zipfile, $path, $zipmode = false){
|
|
| 541 |
function wpa_zip($zip_name, $folder, $zipmode = false){
|
| 542 |
if ( $zipmode || (!in_array('ZipArchive', get_declared_classes()) || !class_exists('ZipArchive')) ) {
|
| 543 |
wpa_wpc_log( 'archiving files using pclzip' );
|
|
|
|
| 544 |
define('PCLZIP_TEMPORARY_DIR', WPCLONE_DIR_BACKUP);
|
| 545 |
require_once ( ABSPATH . 'wp-admin/includes/class-pclzip.php');
|
| 546 |
$z = new PclZip($zip_name);
|
| 541 |
function wpa_zip($zip_name, $folder, $zipmode = false){
|
| 542 |
if ( $zipmode || (!in_array('ZipArchive', get_declared_classes()) || !class_exists('ZipArchive')) ) {
|
| 543 |
wpa_wpc_log( 'archiving files using pclzip' );
|
| 544 |
+
$zipmode = true;
|
| 545 |
define('PCLZIP_TEMPORARY_DIR', WPCLONE_DIR_BACKUP);
|
| 546 |
require_once ( ABSPATH . 'wp-admin/includes/class-pclzip.php');
|
| 547 |
$z = new PclZip($zip_name);
|
readme.txt
CHANGED
|
@@ -6,7 +6,7 @@ Author URI: http://wpacademy.com
|
|
| 6 |
Plugin URI: http://wpacademy.com/software
|
| 7 |
Requires at least: 3.0
|
| 8 |
Tested up to: 4.4
|
| 9 |
-
Stable tag: 2.2.
|
| 10 |
License: GPLv2 or later
|
| 11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 12 |
|
|
@@ -21,13 +21,13 @@ WP Clone is a superior solution to even commercial WordPress cloning plugins for
|
|
| 21 |
* Does not require FTP access to either the source or destination site – just install a new WordPress on the destination site, upload and activate WP Clone plugin, and follow the prompts
|
| 22 |
* It does not backup or restore the WordPress system files (just the user content and database) – reducing upload time and improving security of your site
|
| 23 |
* It fetches the site backup via your host's direct http connection, which saves you from needing to upload large files through your internet connection
|
| 24 |
-
* It uses the WordPress internal zip archive function, which makes it compatible with virtually 100% of hosts that support WordPress (no special PHP libraries are required)
|
| 25 |
|
| 26 |
<blockquote>
|
| 27 |
= Update December 2015 =
|
| 28 |
Prior to the latest update, WP Clone was failing in 10-20% of installations (particularly larger installations), as reflected in the negative reviews.
|
| 29 |
Since the latest update, we have successfully restored 2GB sites, but we cannot guarantee the reliability on all installations.
|
| 30 |
<strong>Please carefully read the section below NO SUPPORT AND DISCLAIMER before you attempt to use this plugin.</strong>
|
|
|
|
| 31 |
</blockquote>
|
| 32 |
|
| 33 |
= Help Video =
|
|
@@ -69,6 +69,9 @@ If you are able to help out with plugin development or wish to contribute insigh
|
|
| 69 |
Review FAQ's and Help Video at the [WP Clone FAQ Page](http://members.wpacademy.com/wpclone-faq "WP Clone FAQ")
|
| 70 |
|
| 71 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
| 72 |
= 2.2.1 - 2015-12-29 =
|
| 73 |
* Fixed: Backup names will use the time zone selected in general settings.
|
| 74 |
* Added: basic backup/restore logs.
|
| 6 |
Plugin URI: http://wpacademy.com/software
|
| 7 |
Requires at least: 3.0
|
| 8 |
Tested up to: 4.4
|
| 9 |
+
Stable tag: 2.2.2
|
| 10 |
License: GPLv2 or later
|
| 11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 12 |
|
| 21 |
* Does not require FTP access to either the source or destination site – just install a new WordPress on the destination site, upload and activate WP Clone plugin, and follow the prompts
|
| 22 |
* It does not backup or restore the WordPress system files (just the user content and database) – reducing upload time and improving security of your site
|
| 23 |
* It fetches the site backup via your host's direct http connection, which saves you from needing to upload large files through your internet connection
|
|
|
|
| 24 |
|
| 25 |
<blockquote>
|
| 26 |
= Update December 2015 =
|
| 27 |
Prior to the latest update, WP Clone was failing in 10-20% of installations (particularly larger installations), as reflected in the negative reviews.
|
| 28 |
Since the latest update, we have successfully restored 2GB sites, but we cannot guarantee the reliability on all installations.
|
| 29 |
<strong>Please carefully read the section below NO SUPPORT AND DISCLAIMER before you attempt to use this plugin.</strong>
|
| 30 |
+
|
| 31 |
</blockquote>
|
| 32 |
|
| 33 |
= Help Video =
|
| 69 |
Review FAQ's and Help Video at the [WP Clone FAQ Page](http://members.wpacademy.com/wpclone-faq "WP Clone FAQ")
|
| 70 |
|
| 71 |
== Changelog ==
|
| 72 |
+
= 2.2.2 - 2015-12-30 =
|
| 73 |
+
* Fixed: A bug introduced in 2.2.1 which caused the file archiver to use the wrong zip library on installations where ziparchive is disabled.
|
| 74 |
+
|
| 75 |
= 2.2.1 - 2015-12-29 =
|
| 76 |
* Fixed: Backup names will use the time zone selected in general settings.
|
| 77 |
* Added: basic backup/restore logs.
|
wpclone.php
CHANGED
|
@@ -4,7 +4,7 @@ Plugin name: WP Clone by WP Academy
|
|
| 4 |
Plugin URI: http://wpacademy.com/software/
|
| 5 |
Description: Move or copy a WordPress site to another server or to another domain name, move to/from local server hosting, and backup sites.
|
| 6 |
Author: WP Academy
|
| 7 |
-
Version: 2.2.
|
| 8 |
Author URI: http://wpacademy.com/
|
| 9 |
*/
|
| 10 |
|
| 4 |
Plugin URI: http://wpacademy.com/software/
|
| 5 |
Description: Move or copy a WordPress site to another server or to another domain name, move to/from local server hosting, and backup sites.
|
| 6 |
Author: WP Academy
|
| 7 |
+
Version: 2.2.2
|
| 8 |
Author URI: http://wpacademy.com/
|
| 9 |
*/
|
| 10 |
|
