Version Description
- Worker update tested to the latest version of WordPress
- Minor logging changes
Download this release
Release Info
Developer | freediver |
Plugin | ManageWP Worker |
Version | 4.9.14 |
Comparing to | |
See all releases |
Code changes from version 4.9.13 to 4.9.14
- init.php +3 -3
- readme.txt +5 -1
- src/MWP/EventListener/MasterRequest/AuthenticateServiceRequest.php +2 -0
- version +2 -2
init.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: ManageWP - Worker
|
4 |
Plugin URI: https://managewp.com
|
5 |
Description: We help you efficiently manage all your WordPress websites. <strong>Updates, backups, 1-click login, migrations, security</strong> and more, on one dashboard. This service comes in two versions: standalone <a href="https://managewp.com">ManageWP</a> service that focuses on website management, and <a href="https://godaddy.com/pro">GoDaddy Pro</a> that includes additional tools for hosting, client management, lead generation, and more.
|
6 |
-
Version: 4.9.
|
7 |
Author: GoDaddy
|
8 |
Author URI: https://godaddy.com
|
9 |
License: GPL2
|
@@ -568,8 +568,8 @@ if (!function_exists('mwp_init')):
|
|
568 |
// reason (eg. the site can't ping itself). Handle that case early.
|
569 |
register_activation_hook(__FILE__, 'mwp_activation_hook');
|
570 |
|
571 |
-
$GLOBALS['MMB_WORKER_VERSION'] = '4.9.
|
572 |
-
$GLOBALS['MMB_WORKER_REVISION'] = '
|
573 |
|
574 |
// Ensure PHP version compatibility.
|
575 |
if (version_compare(PHP_VERSION, '5.2', '<')) {
|
3 |
Plugin Name: ManageWP - Worker
|
4 |
Plugin URI: https://managewp.com
|
5 |
Description: We help you efficiently manage all your WordPress websites. <strong>Updates, backups, 1-click login, migrations, security</strong> and more, on one dashboard. This service comes in two versions: standalone <a href="https://managewp.com">ManageWP</a> service that focuses on website management, and <a href="https://godaddy.com/pro">GoDaddy Pro</a> that includes additional tools for hosting, client management, lead generation, and more.
|
6 |
+
Version: 4.9.14
|
7 |
Author: GoDaddy
|
8 |
Author URI: https://godaddy.com
|
9 |
License: GPL2
|
568 |
// reason (eg. the site can't ping itself). Handle that case early.
|
569 |
register_activation_hook(__FILE__, 'mwp_activation_hook');
|
570 |
|
571 |
+
$GLOBALS['MMB_WORKER_VERSION'] = '4.9.14';
|
572 |
+
$GLOBALS['MMB_WORKER_REVISION'] = '2022-06-09 00:00:00';
|
573 |
|
574 |
// Ensure PHP version compatibility.
|
575 |
if (version_compare(PHP_VERSION, '5.2', '<')) {
|
readme.txt
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
Contributors: managewp,freediver
|
3 |
Tags: manage multiple sites, backup, security, migrate, performance, analytics, Manage WordPress, Managed WordPress, WordPress management, WordPress manager, WordPress management, site management, control multiple sites, WordPress management dashboard, administration, automate, automatic, comments, clone, dashboard, duplicate, google analytics, login, manage, managewp, multiple, multisite, remote, seo, spam
|
4 |
Requires at least: 3.1
|
5 |
-
Tested up to:
|
6 |
Stable tag: trunk
|
7 |
License: GPLv3 or later
|
8 |
License URI: http://www.gnu.org/licenses/quick-guide-gplv3.html
|
@@ -55,6 +55,10 @@ Check out the [ManageWP promo video](https://vimeo.com/220647227).
|
|
55 |
https://vimeo.com/220647227
|
56 |
|
57 |
== Changelog ==
|
|
|
|
|
|
|
|
|
58 |
= 4.9.13 =
|
59 |
- Fix: Resolved old PHP version compatibility issues.
|
60 |
|
2 |
Contributors: managewp,freediver
|
3 |
Tags: manage multiple sites, backup, security, migrate, performance, analytics, Manage WordPress, Managed WordPress, WordPress management, WordPress manager, WordPress management, site management, control multiple sites, WordPress management dashboard, administration, automate, automatic, comments, clone, dashboard, duplicate, google analytics, login, manage, managewp, multiple, multisite, remote, seo, spam
|
4 |
Requires at least: 3.1
|
5 |
+
Tested up to: 6.0
|
6 |
Stable tag: trunk
|
7 |
License: GPLv3 or later
|
8 |
License URI: http://www.gnu.org/licenses/quick-guide-gplv3.html
|
55 |
https://vimeo.com/220647227
|
56 |
|
57 |
== Changelog ==
|
58 |
+
= 4.9.14 =
|
59 |
+
- Worker update tested to the latest version of WordPress
|
60 |
+
- Minor logging changes
|
61 |
+
|
62 |
= 4.9.13 =
|
63 |
- Fix: Resolved old PHP version compatibility issues.
|
64 |
|
src/MWP/EventListener/MasterRequest/AuthenticateServiceRequest.php
CHANGED
@@ -47,6 +47,7 @@ class MWP_EventListener_MasterRequest_AuthenticateServiceRequest implements Symf
|
|
47 |
$keyName = $request->getKeyName();
|
48 |
|
49 |
if (empty($serviceSignature) || empty($keyName)) {
|
|
|
50 |
return;
|
51 |
}
|
52 |
|
@@ -63,6 +64,7 @@ class MWP_EventListener_MasterRequest_AuthenticateServiceRequest implements Symf
|
|
63 |
$messageToCheck = '';
|
64 |
|
65 |
if (empty($communicationKey)) {
|
|
|
66 |
return;
|
67 |
}
|
68 |
|
47 |
$keyName = $request->getKeyName();
|
48 |
|
49 |
if (empty($serviceSignature) || empty($keyName)) {
|
50 |
+
$this->context->optionSet('mwp_last_communication_error', 'Unexpected: service signature or key name are empty. Key name: '.$keyName.', Signature: '.$serviceSignature);
|
51 |
return;
|
52 |
}
|
53 |
|
64 |
$messageToCheck = '';
|
65 |
|
66 |
if (empty($communicationKey)) {
|
67 |
+
$this->context->optionSet('mwp_last_communication_error', 'Unexpected: communication key is empty. Key name: '.$keyName);
|
68 |
return;
|
69 |
}
|
70 |
|
version
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
-
4.9.
|
2 |
-
|
1 |
+
4.9.14
|
2 |
+
2022-06-09 00:00:00
|