Version Description
- Fix: In certain cases, a multi-call backup of a large DB missed a few table's data.
Download this release
Release Info
Developer | infinitewp |
Plugin | InfiniteWP Client |
Version | 1.3.13 |
Comparing to | |
See all releases |
Code changes from version 1.3.12 to 1.3.13
- backup.class.multicall.php +5 -3
- init.php +2 -2
- readme.txt +4 -1
backup.class.multicall.php
CHANGED
@@ -575,6 +575,7 @@ class IWP_MMB_Backup_Multicall extends IWP_MMB_Core
|
|
575 |
}
|
576 |
else
|
577 |
{
|
|
|
578 |
$callCount = $response_array['callCount'];
|
579 |
$backupStage = 'backupDBMultiCall';
|
580 |
}
|
@@ -676,9 +677,10 @@ class IWP_MMB_Backup_Multicall extends IWP_MMB_Core
|
|
676 |
$no_of_cols = count($table_fields);
|
677 |
$initialCount = 0;
|
678 |
$done_count = 0;
|
679 |
-
$
|
680 |
-
|
681 |
-
|
|
|
682 |
$breakingCount = 0;
|
683 |
}
|
684 |
if ($count > 100)
|
575 |
}
|
576 |
else
|
577 |
{
|
578 |
+
iwp_mmb_print_flush('DB DUMP PHP CALL COUNT :' . $response_array['callCount']);
|
579 |
$callCount = $response_array['callCount'];
|
580 |
$backupStage = 'backupDBMultiCall';
|
581 |
}
|
677 |
$no_of_cols = count($table_fields);
|
678 |
$initialCount = 0;
|
679 |
$done_count = 0;
|
680 |
+
if($left_out_table == $table[0]){
|
681 |
+
$breakingCount = isset($responseParams['breakingCount']) ? $responseParams['breakingCount'] : 0; //new changes
|
682 |
+
}
|
683 |
+
else{
|
684 |
$breakingCount = 0;
|
685 |
}
|
686 |
if ($count > 100)
|
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.3.
|
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.3.
|
30 |
|
31 |
|
32 |
|
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.3.13
|
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.3.13');
|
30 |
|
31 |
|
32 |
|
readme.txt
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
Contributors: infinitewp
|
3 |
Tags: admin, administration, amazon, api, authentication, automatic, dashboard, dropbox, events, integration, manage, multisite, multiple, notification, performance, s3, security, seo, stats, tracking, infinitewp, updates, backup, restore, iwp, infinite
|
4 |
Requires at least: 3.0
|
5 |
-
Tested up to: 4.
|
6 |
Stable tag: trunk
|
7 |
|
8 |
Install this plugin on unlimited sites and manage them all from a central dashboard.
|
@@ -48,6 +48,9 @@ Credits: [Vladimir Prelovac](http://prelovac.com/vladimir) for his worker plugin
|
|
48 |
|
49 |
== Changelog ==
|
50 |
|
|
|
|
|
|
|
51 |
= 1.3.12 =
|
52 |
* Fix: In a few servers, readdir() was creating "Empty reply from server" error and in WPEngine it was creating 502 error while taking backup
|
53 |
* Fix: .mp4 was excluding by default
|
2 |
Contributors: infinitewp
|
3 |
Tags: admin, administration, amazon, api, authentication, automatic, dashboard, dropbox, events, integration, manage, multisite, multiple, notification, performance, s3, security, seo, stats, tracking, infinitewp, updates, backup, restore, iwp, infinite
|
4 |
Requires at least: 3.0
|
5 |
+
Tested up to: 4.2.1
|
6 |
Stable tag: trunk
|
7 |
|
8 |
Install this plugin on unlimited sites and manage them all from a central dashboard.
|
48 |
|
49 |
== Changelog ==
|
50 |
|
51 |
+
= 1.3.13 =
|
52 |
+
* Fix: In certain cases, a multi-call backup of a large DB missed a few table's data.
|
53 |
+
|
54 |
= 1.3.12 =
|
55 |
* Fix: In a few servers, readdir() was creating "Empty reply from server" error and in WPEngine it was creating 502 error while taking backup
|
56 |
* Fix: .mp4 was excluding by default
|