Version Description
- Fix: Increase the max memory consumption
Download this release
Release Info
Developer | ReneHermi |
Plugin | WP Staging – DB & File Duplicator & Migration |
Version | 2.1.8 |
Comparing to | |
See all releases |
Code changes from version 2.1.7 to 2.1.8
apps/Backend/Modules/Jobs/Job.php
CHANGED
@@ -191,7 +191,8 @@ abstract class Job implements JobInterface
|
|
191 |
$this->settings->cpuLoad = "medium";
|
192 |
}
|
193 |
|
194 |
-
|
|
|
195 |
$timeLimit = self::EXECUTION_TIME_RATIO;
|
196 |
|
197 |
switch($this->settings->cpuLoad)
|
191 |
$this->settings->cpuLoad = "medium";
|
192 |
}
|
193 |
|
194 |
+
//$memoryLimit= self::MAX_MEMORY_RATIO;
|
195 |
+
$memoryLimit= 1;
|
196 |
$timeLimit = self::EXECUTION_TIME_RATIO;
|
197 |
|
198 |
switch($this->settings->cpuLoad)
|
apps/Backend/views/_includes/messages/wp-version-compatible-message.php
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
-
<div class="error">
|
2 |
-
<p>
|
3 |
-
<?php
|
4 |
-
echo sprintf( __(
|
5 |
-
'
|
6 |
-
'<br/>
|
7 |
-
'WP Staging version <br> which has been verified to be working with your WordPress version. ' .
|
8 |
-
'You risk unexpected
|
9 |
-
'<p>
|
10 |
-
);
|
11 |
-
?>
|
12 |
-
</p>
|
13 |
</div>
|
1 |
+
<div class="error">
|
2 |
+
<p>
|
3 |
+
<?php
|
4 |
+
echo sprintf( __(
|
5 |
+
'<strong>Watch out:</strong> This version of WP Staging has not been tested with your WordPress version %2$s.' .
|
6 |
+
'<br/>As WP Staging is using crucial DB and file functions it\'s important that you are using a ' .
|
7 |
+
'WP Staging version <br> which has been verified to be working with your WordPress version. ' .
|
8 |
+
'You risk unexpected data lose if you do not so! ' .
|
9 |
+
'<p><strong>Get the latest WP Staging plugin from <a href="%1$s" target="_blank">https://wp-staging.com</a>.</strong>', 'wpstg'), 'https://wp-staging.com', get_bloginfo( 'version' )
|
10 |
+
);
|
11 |
+
?>
|
12 |
+
</p>
|
13 |
</div>
|
apps/Core/WPStaging.php
CHANGED
@@ -29,7 +29,7 @@ final class WPStaging {
|
|
29 |
/**
|
30 |
* Plugin version
|
31 |
*/
|
32 |
-
const VERSION = "2.1.
|
33 |
|
34 |
/**
|
35 |
* Plugin name
|
@@ -44,7 +44,7 @@ final class WPStaging {
|
|
44 |
/**
|
45 |
* Compatible WP Version
|
46 |
*/
|
47 |
-
const WP_COMPATIBLE = "4.9.
|
48 |
|
49 |
/**
|
50 |
* Slug: Either wp-staging or wp-staging-pro
|
29 |
/**
|
30 |
* Plugin version
|
31 |
*/
|
32 |
+
const VERSION = "2.1.8";
|
33 |
|
34 |
/**
|
35 |
* Plugin name
|
44 |
/**
|
45 |
* Compatible WP Version
|
46 |
*/
|
47 |
+
const WP_COMPATIBLE = "4.9.5";
|
48 |
|
49 |
/**
|
50 |
* Slug: Either wp-staging or wp-staging-pro
|
readme.txt
CHANGED
@@ -9,7 +9,7 @@ License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
|
9 |
Tags: staging, duplication, cloning, clone, migration, sandbox, test site, testing, backup, post, admin, administration, duplicate posts
|
10 |
Requires at least: 3.6+
|
11 |
Tested up to: 4.9
|
12 |
-
Stable tag: 2.1.
|
13 |
|
14 |
A duplicator plugin! Clone, duplicate and migrate live sites to independent staging and development sites that are available only to administrators.
|
15 |
|
@@ -139,6 +139,9 @@ https://wp-staging.com
|
|
139 |
|
140 |
== Changelog ==
|
141 |
|
|
|
|
|
|
|
142 |
= 2.1.7 =
|
143 |
* Tweak: Return more human readable error notices
|
144 |
* Fix: Cloning process stops due to file permission issue
|
9 |
Tags: staging, duplication, cloning, clone, migration, sandbox, test site, testing, backup, post, admin, administration, duplicate posts
|
10 |
Requires at least: 3.6+
|
11 |
Tested up to: 4.9
|
12 |
+
Stable tag: 2.1.8
|
13 |
|
14 |
A duplicator plugin! Clone, duplicate and migrate live sites to independent staging and development sites that are available only to administrators.
|
15 |
|
139 |
|
140 |
== Changelog ==
|
141 |
|
142 |
+
= 2.1.8 =
|
143 |
+
* Fix: Increase the max memory consumption
|
144 |
+
|
145 |
= 2.1.7 =
|
146 |
* Tweak: Return more human readable error notices
|
147 |
* Fix: Cloning process stops due to file permission issue
|
wp-staging.php
CHANGED
@@ -7,7 +7,7 @@
|
|
7 |
* Author: WP-Staging
|
8 |
* Author URI: https://wp-staging.com
|
9 |
* Contributors: ReneHermi, ilgityildirim
|
10 |
-
* Version: 2.1.
|
11 |
* Text Domain: wpstg
|
12 |
* Domain Path: /languages/
|
13 |
|
7 |
* Author: WP-Staging
|
8 |
* Author URI: https://wp-staging.com
|
9 |
* Contributors: ReneHermi, ilgityildirim
|
10 |
+
* Version: 2.1.8
|
11 |
* Text Domain: wpstg
|
12 |
* Domain Path: /languages/
|
13 |
|