Version Description
- Bug in command line backup fixed
Download this release
Release Info
Developer | infinitewp |
Plugin | InfiniteWP Client |
Version | 1.1.4 |
Comparing to | |
See all releases |
Code changes from version 1.1.3 to 1.1.4
- backup.class.php +1 -1
- init.php +2 -2
- readme.txt +3 -0
backup.class.php
CHANGED
@@ -731,7 +731,7 @@ if (isset($account_info['iwp_ftp']) && !empty($account_info['iwp_ftp'])) {
|
|
731 |
$command = "$zip -q -j $comp_level $backup_file .* * $exclude_file_data";
|
732 |
$result_f = $this->iwp_mmb_exec($command, false, true);
|
733 |
if (!$result_f || $result_f == 18) { // disregard permissions error, file can't be accessed
|
734 |
-
$command = "$zip -q -r $comp_level $backup_file $include_data $
|
735 |
$result_d = $this->iwp_mmb_exec($command, false, true);
|
736 |
if ($result_d && $result_d != 18) {
|
737 |
@unlink($backup_file);
|
731 |
$command = "$zip -q -j $comp_level $backup_file .* * $exclude_file_data";
|
732 |
$result_f = $this->iwp_mmb_exec($command, false, true);
|
733 |
if (!$result_f || $result_f == 18) { // disregard permissions error, file can't be accessed
|
734 |
+
$command = "$zip -q -r $comp_level $backup_file $include_data $exclude_data";
|
735 |
$result_d = $this->iwp_mmb_exec($command, false, true);
|
736 |
if ($result_d && $result_d != 18) {
|
737 |
@unlink($backup_file);
|
init.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: InfiniteWP - Client
|
|
4 |
Plugin URI: http://infinitewp.com/
|
5 |
Description: This is the client plugin of InfiniteWP that communicates with the InfiniteWP Admin panel.
|
6 |
Author: Revmakx
|
7 |
-
Version: 1.1.
|
8 |
Author URI: http://www.revmakx.com
|
9 |
*/
|
10 |
/************************************************************
|
@@ -26,7 +26,7 @@ Author URI: http://www.revmakx.com
|
|
26 |
**************************************************************/
|
27 |
|
28 |
if(!defined('IWP_MMB_CLIENT_VERSION'))
|
29 |
-
define('IWP_MMB_CLIENT_VERSION', '1.1.
|
30 |
|
31 |
|
32 |
if ( !defined('IWP_MMB_XFRAME_COOKIE')){
|
4 |
Plugin URI: http://infinitewp.com/
|
5 |
Description: This is the client plugin of InfiniteWP that communicates with the InfiniteWP Admin panel.
|
6 |
Author: Revmakx
|
7 |
+
Version: 1.1.4
|
8 |
Author URI: http://www.revmakx.com
|
9 |
*/
|
10 |
/************************************************************
|
26 |
**************************************************************/
|
27 |
|
28 |
if(!defined('IWP_MMB_CLIENT_VERSION'))
|
29 |
+
define('IWP_MMB_CLIENT_VERSION', '1.1.4');
|
30 |
|
31 |
|
32 |
if ( !defined('IWP_MMB_XFRAME_COOKIE')){
|
readme.txt
CHANGED
@@ -48,6 +48,9 @@ Credits: [Vladimir Prelovac](http://prelovac.com/vladimir) for his worker plugin
|
|
48 |
|
49 |
== Changelog ==
|
50 |
|
|
|
|
|
|
|
51 |
= 1.1.3 =
|
52 |
* Backup improved and optimize table while backing up fixed
|
53 |
* Excluding wp-content/cache & wp-content/w3tc/ by default
|
48 |
|
49 |
== Changelog ==
|
50 |
|
51 |
+
= 1.1.4 =
|
52 |
+
* Bug in command line backup fixed
|
53 |
+
|
54 |
= 1.1.3 =
|
55 |
* Backup improved and optimize table while backing up fixed
|
56 |
* Excluding wp-content/cache & wp-content/w3tc/ by default
|