Version Description
- Problem resolution. Display "service can be activated" message when cache is purged.;
- Update Plugin URI value;
- Problem resolution. WP_CLI Activation and Deactivation;
- Additional option to view the check request information by visiting the page dominio.tld/wp-admin/options-general.php?page=aruba-hispeed-cache&debug=1
Download this release
Release Info
Developer | arubadev |
Plugin | Aruba HiSpeed Cache |
Version | 1.1.1 |
Comparing to | |
See all releases |
Code changes from version 1.1.0 to 1.1.1
- admin/partials/admin-general-options.php +10 -1
- aruba-hispeed-cache.php +3 -3
- includes/ArubaHiSpeedCacheAdmin.php +23 -9
- includes/ArubaHiSpeedCacheConfigs.php +1 -28
- includes/HiSpeedCacheServiceChecker.php +15 -10
- languages/aruba-hispeed-cache.pot +38 -38
- readme.txt +12 -9
admin/partials/admin-general-options.php
CHANGED
@@ -7,7 +7,7 @@ $aruba_hispeed_cache_settings = $this->_settings_manager();
|
|
7 |
/**
|
8 |
* @see ArubaHiSpeedCache\includes\_check_hispeed_cache_services_realtime function
|
9 |
*/
|
10 |
-
$this->_check_hispeed_cache_services_realtime();
|
11 |
|
12 |
?>
|
13 |
|
@@ -82,3 +82,12 @@ $this->_check_hispeed_cache_services_realtime();
|
|
82 |
</tr>
|
83 |
</table>
|
84 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
/**
|
8 |
* @see ArubaHiSpeedCache\includes\_check_hispeed_cache_services_realtime function
|
9 |
*/
|
10 |
+
$aruba_hispeed_cache_debugger = $this->_check_hispeed_cache_services_realtime();
|
11 |
|
12 |
?>
|
13 |
|
82 |
</tr>
|
83 |
</table>
|
84 |
</div>
|
85 |
+
|
86 |
+
<?php if ($aruba_hispeed_cache_debugger) { ?>
|
87 |
+
<div class="ahsc-logger-wrapper">
|
88 |
+
<div class="inside">
|
89 |
+
<textarea id="logger" cols="30" rows="10" readonly
|
90 |
+
style="width: 100%;"><?php echo $aruba_hispeed_cache_debugger ?></textarea>
|
91 |
+
</div>
|
92 |
+
</div>
|
93 |
+
<?php };
|
aruba-hispeed-cache.php
CHANGED
@@ -11,13 +11,13 @@
|
|
11 |
*
|
12 |
* @wordpress-plugin
|
13 |
* Plugin Name: Aruba HiSpeed Cache
|
14 |
-
* Version: 1.1.
|
15 |
-
* Plugin URI: https://
|
16 |
* Description: Aruba HiSpeed Cache interfaces directly with an Aruba hosting platform's HiSpeed Cache service and automates its management.
|
17 |
* Author: Aruba.it
|
18 |
* Author URI: https://www.aruba.it/
|
19 |
* Text Domain: aruba-hispeed-cache
|
20 |
-
* Domain Path: /languages
|
21 |
* License: GPL v2
|
22 |
* Requires at least: 5.4
|
23 |
* Tested up to: 6.0
|
11 |
*
|
12 |
* @wordpress-plugin
|
13 |
* Plugin Name: Aruba HiSpeed Cache
|
14 |
+
* Version: 1.1.1
|
15 |
+
* Plugin URI: https://hosting.aruba.it/wordpress.aspx
|
16 |
* Description: Aruba HiSpeed Cache interfaces directly with an Aruba hosting platform's HiSpeed Cache service and automates its management.
|
17 |
* Author: Aruba.it
|
18 |
* Author URI: https://www.aruba.it/
|
19 |
* Text Domain: aruba-hispeed-cache
|
20 |
+
* Domain Path: /languages
|
21 |
* License: GPL v2
|
22 |
* Requires at least: 5.4
|
23 |
* Tested up to: 6.0
|
includes/ArubaHiSpeedCacheAdmin.php
CHANGED
@@ -174,6 +174,12 @@ if (! \class_exists('ArubaHiSpeedCache\includes\ArubaHiSpeedCacheAdmin')) {
|
|
174 |
*/
|
175 |
public function aruba_hispeed_cache_setting_page_cb()
|
176 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
177 |
include ARUBA_HISPEED_CACHE_BASEPATH . 'admin' .AHSC_DS. 'partials' .AHSC_DS. 'admin-display.php';
|
178 |
}
|
179 |
|
@@ -357,16 +363,16 @@ if (! \class_exists('ArubaHiSpeedCache\includes\ArubaHiSpeedCacheAdmin')) {
|
|
357 |
|
358 |
private function _check_hispeed_cache_services_realtime()
|
359 |
{
|
360 |
-
$has_notice = (\is_multisite()) ?
|
361 |
-
\get_site_transient(ArubaHiSpeedCacheConfigs::ArubaHiSpeedCache_getConfigs('TRANSIENT_NAME')) :
|
362 |
-
\get_transient(ArubaHiSpeedCacheConfigs::ArubaHiSpeedCache_getConfigs('TRANSIENT_NAME'))
|
363 |
-
;
|
364 |
|
365 |
-
if (!$has_notice) {
|
366 |
-
|
367 |
-
|
368 |
|
369 |
-
|
370 |
case 'available':
|
371 |
$notices_file = 'admin-notice-service-available';
|
372 |
break;
|
@@ -377,9 +383,17 @@ if (! \class_exists('ArubaHiSpeedCache\includes\ArubaHiSpeedCacheAdmin')) {
|
|
377 |
$notices_file = 'admin-notice-not-aruba-server';
|
378 |
break;
|
379 |
}
|
|
|
|
|
|
|
|
|
380 |
|
381 |
-
|
|
|
382 |
}
|
|
|
|
|
|
|
383 |
}
|
384 |
|
385 |
/**
|
174 |
*/
|
175 |
public function aruba_hispeed_cache_setting_page_cb()
|
176 |
{
|
177 |
+
if (! \current_user_can('manage_options')) {
|
178 |
+
\wp_die(
|
179 |
+
esc_html__('Sorry, you need to be an administrator to use Aruba HiSpeed Cache.', 'aruba-hispeed-cache')
|
180 |
+
);
|
181 |
+
}
|
182 |
+
|
183 |
include ARUBA_HISPEED_CACHE_BASEPATH . 'admin' .AHSC_DS. 'partials' .AHSC_DS. 'admin-display.php';
|
184 |
}
|
185 |
|
363 |
|
364 |
private function _check_hispeed_cache_services_realtime()
|
365 |
{
|
366 |
+
// $has_notice = (\is_multisite()) ?
|
367 |
+
// \get_site_transient(ArubaHiSpeedCacheConfigs::ArubaHiSpeedCache_getConfigs('TRANSIENT_NAME')) :
|
368 |
+
// \get_transient(ArubaHiSpeedCacheConfigs::ArubaHiSpeedCache_getConfigs('TRANSIENT_NAME'))
|
369 |
+
// ;
|
370 |
|
371 |
+
//if (!$has_notice) {
|
372 |
+
$checker = new HiSpeedCacheServiceChecker();
|
373 |
+
$notices_file = null;
|
374 |
|
375 |
+
switch ($checker->check()) {
|
376 |
case 'available':
|
377 |
$notices_file = 'admin-notice-service-available';
|
378 |
break;
|
383 |
$notices_file = 'admin-notice-not-aruba-server';
|
384 |
break;
|
385 |
}
|
386 |
+
|
387 |
+
if ($notices_file != null) {
|
388 |
+
include_once ARUBA_HISPEED_CACHE_BASEPATH . 'admin' .AHSC_DS. 'partials' .AHSC_DS. $notices_file .'.php';
|
389 |
+
}
|
390 |
|
391 |
+
if ('1' === \filter_input(INPUT_GET, 'debug', FILTER_SANITIZE_STRING)) {
|
392 |
+
return $checker->debugger();
|
393 |
}
|
394 |
+
|
395 |
+
return false;
|
396 |
+
//}
|
397 |
}
|
398 |
|
399 |
/**
|
includes/ArubaHiSpeedCacheConfigs.php
CHANGED
@@ -188,25 +188,6 @@ if (! \class_exists('ArubaHiSpeedCache\includes\ArubaHiSpeedCacheConfigs')) {
|
|
188 |
*/
|
189 |
public static function ArubaHiSpeedCache_activate()
|
190 |
{
|
191 |
-
if (! \current_user_can('activate_plugins')) {
|
192 |
-
die();
|
193 |
-
}
|
194 |
-
|
195 |
-
$role = \get_role('administrator');
|
196 |
-
|
197 |
-
if (empty($role)) {
|
198 |
-
\update_site_option(
|
199 |
-
'wp_aruba_hispeed_cache_init_check',
|
200 |
-
__('Sorry, you need to be an administrator to use Aruba HiSpeed Cache.', 'aruba-hispeed-cache')
|
201 |
-
);
|
202 |
-
return;
|
203 |
-
}
|
204 |
-
|
205 |
-
//add the user cap to admin user
|
206 |
-
foreach (self::$USER_CAP as $cap) {
|
207 |
-
$role->add_cap($cap);
|
208 |
-
}
|
209 |
-
|
210 |
//get the option
|
211 |
$options = \get_site_option(ARUBA_HISPEED_CACHE_OPTIONS_NAME);
|
212 |
|
@@ -224,15 +205,7 @@ if (! \class_exists('ArubaHiSpeedCache\includes\ArubaHiSpeedCacheConfigs')) {
|
|
224 |
*/
|
225 |
public static function ArubaHiSpeedCache_deactivate()
|
226 |
{
|
227 |
-
|
228 |
-
return;
|
229 |
-
}
|
230 |
-
|
231 |
-
$role = \get_role('administrator');
|
232 |
-
|
233 |
-
foreach (self::$USER_CAP as $cap) {
|
234 |
-
$role->remove_cap($cap);
|
235 |
-
}
|
236 |
}
|
237 |
|
238 |
/**
|
188 |
*/
|
189 |
public static function ArubaHiSpeedCache_activate()
|
190 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
191 |
//get the option
|
192 |
$options = \get_site_option(ARUBA_HISPEED_CACHE_OPTIONS_NAME);
|
193 |
|
205 |
*/
|
206 |
public static function ArubaHiSpeedCache_deactivate()
|
207 |
{
|
208 |
+
//empty
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
209 |
}
|
210 |
|
211 |
/**
|
includes/HiSpeedCacheServiceChecker.php
CHANGED
@@ -47,7 +47,9 @@ if (!class_exists(__NAMESPACE__ . '\HiSpeedCacheServiceChecker')) {
|
|
47 |
$response = \wp_remote_get($this->target, array(
|
48 |
'sslverify' => false,
|
49 |
'user-agent' => 'aruba-ua',
|
50 |
-
'httpversion' => '1.1'
|
|
|
|
|
51 |
));
|
52 |
|
53 |
if (\is_array($response) && ! \is_wp_error($response)) {
|
@@ -74,11 +76,6 @@ if (!class_exists(__NAMESPACE__ . '\HiSpeedCacheServiceChecker')) {
|
|
74 |
$this->serviceIsActivabile = false;
|
75 |
$this->serviceIsActive = false;
|
76 |
break;
|
77 |
-
case 'MISS':
|
78 |
-
case 'BYPASS':
|
79 |
-
$this->serviceIsActivabile = true;
|
80 |
-
$this->serviceIsActive = false;
|
81 |
-
break;
|
82 |
default:
|
83 |
$this->serviceIsActive = true;
|
84 |
break;
|
@@ -93,16 +90,13 @@ if (!class_exists(__NAMESPACE__ . '\HiSpeedCacheServiceChecker')) {
|
|
93 |
case 'aruba-proxy':
|
94 |
$this->serviceIsActivabile = true;
|
95 |
break;
|
96 |
-
|
97 |
$this->serviceIsActivabile = false;
|
98 |
|
99 |
if (array_key_exists('x-servername', $this->headers) && str_contains($this->headers['x-servername'], 'aruba.it')) {
|
100 |
$this->serviceIsActivabile = true;
|
101 |
}
|
102 |
break;
|
103 |
-
default:
|
104 |
-
$this->serviceIsActivabile = false;
|
105 |
-
break;
|
106 |
}
|
107 |
return;
|
108 |
}
|
@@ -120,5 +114,16 @@ if (!class_exists(__NAMESPACE__ . '\HiSpeedCacheServiceChecker')) {
|
|
120 |
return ($this->serviceIsActivabile) ? 'available' : 'no-aruba-server';
|
121 |
}
|
122 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
123 |
}
|
124 |
}
|
47 |
$response = \wp_remote_get($this->target, array(
|
48 |
'sslverify' => false,
|
49 |
'user-agent' => 'aruba-ua',
|
50 |
+
'httpversion' => '1.1',
|
51 |
+
'timeout' => 15
|
52 |
+
|
53 |
));
|
54 |
|
55 |
if (\is_array($response) && ! \is_wp_error($response)) {
|
76 |
$this->serviceIsActivabile = false;
|
77 |
$this->serviceIsActive = false;
|
78 |
break;
|
|
|
|
|
|
|
|
|
|
|
79 |
default:
|
80 |
$this->serviceIsActive = true;
|
81 |
break;
|
90 |
case 'aruba-proxy':
|
91 |
$this->serviceIsActivabile = true;
|
92 |
break;
|
93 |
+
default:
|
94 |
$this->serviceIsActivabile = false;
|
95 |
|
96 |
if (array_key_exists('x-servername', $this->headers) && str_contains($this->headers['x-servername'], 'aruba.it')) {
|
97 |
$this->serviceIsActivabile = true;
|
98 |
}
|
99 |
break;
|
|
|
|
|
|
|
100 |
}
|
101 |
return;
|
102 |
}
|
114 |
return ($this->serviceIsActivabile) ? 'available' : 'no-aruba-server';
|
115 |
}
|
116 |
}
|
117 |
+
|
118 |
+
public function debugger()
|
119 |
+
{
|
120 |
+
$data = array(
|
121 |
+
'date' => date('D, d M Y H:i:s', time()),
|
122 |
+
'target' => $this->target,
|
123 |
+
'headers' => $this->headers,
|
124 |
+
);
|
125 |
+
|
126 |
+
return var_export($data, true);
|
127 |
+
}
|
128 |
}
|
129 |
}
|
languages/aruba-hispeed-cache.pot
CHANGED
@@ -2,15 +2,15 @@
|
|
2 |
# This file is distributed under the same license as the Aruba HiSpeed Cache plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Aruba HiSpeed Cache 1.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/aruba-hispeed-cache\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"POT-Creation-Date: 2022-
|
13 |
-
"PO-Revision-Date: 2022-
|
14 |
"X-Generator: WP-CLI 2.0.1\n"
|
15 |
"X-Domain: aruba-hispeed-cache\n"
|
16 |
|
@@ -23,7 +23,7 @@ msgid "Aruba HiSpeed Cache"
|
|
23 |
msgstr ""
|
24 |
|
25 |
#. Plugin URI of the plugin
|
26 |
-
msgid "https://
|
27 |
msgstr ""
|
28 |
|
29 |
#. Description of the plugin
|
@@ -42,11 +42,11 @@ msgstr ""
|
|
42 |
msgid "Aruba HiSpeed Cache Settings "
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: \admin\partials\admin-general-options.php:
|
46 |
msgid "Save changes"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: \admin\partials\admin-general-options.php:
|
50 |
msgid "Purge entire cache"
|
51 |
msgstr ""
|
52 |
|
@@ -78,91 +78,91 @@ msgstr ""
|
|
78 |
msgid "You are about to purge the entire cache. Do you want to continue?"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: \includes\ArubaHiSpeedCacheAdmin.php:
|
|
|
|
|
|
|
|
|
82 |
msgid "Purge the page cache"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: \includes\ArubaHiSpeedCacheAdmin.php:
|
86 |
msgid "Purge Cache"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: \includes\ArubaHiSpeedCacheAdmin.php:
|
90 |
msgid "Settings"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: \includes\ArubaHiSpeedCacheAdmin.php:
|
94 |
-
#: \includes\ArubaHiSpeedCacheAdmin.php:
|
95 |
msgid "Purging options"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: \includes\ArubaHiSpeedCacheAdmin.php:
|
99 |
msgid "Enable automatic purge"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: \includes\ArubaHiSpeedCacheAdmin.php:
|
103 |
msgid "Automatically purge entire cache when:"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: \includes\ArubaHiSpeedCacheAdmin.php:
|
107 |
-
#: \includes\ArubaHiSpeedCacheAdmin.php:
|
108 |
msgid "Home page:"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: \includes\ArubaHiSpeedCacheAdmin.php:
|
112 |
-
#: \includes\ArubaHiSpeedCacheAdmin.php:
|
113 |
msgid "a <strong>post</strong> (or page/custom post) is <strong>modified</strong> or <strong>added</strong>."
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: \includes\ArubaHiSpeedCacheAdmin.php:
|
117 |
-
#: \includes\ArubaHiSpeedCacheAdmin.php:
|
118 |
msgid "a <strong>published post</strong> (or page/custom post) is <strong>cancelled</strong>."
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: \includes\ArubaHiSpeedCacheAdmin.php:
|
122 |
-
#: \includes\ArubaHiSpeedCacheAdmin.php:
|
123 |
msgid "Post/page/custom post type:"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: \includes\ArubaHiSpeedCacheAdmin.php:
|
127 |
msgid "a <strong>post</strong> is <strong>published</strong>."
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: \includes\ArubaHiSpeedCacheAdmin.php:
|
131 |
-
#: \includes\ArubaHiSpeedCacheAdmin.php:
|
132 |
msgid "a <strong>comment</strong> is <strong>approved/published</strong>."
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: \includes\ArubaHiSpeedCacheAdmin.php:
|
136 |
-
#: \includes\ArubaHiSpeedCacheAdmin.php:
|
137 |
msgid "a <strong>comment</strong> is <strong>unapproved/deleted</strong>."
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: \includes\ArubaHiSpeedCacheAdmin.php:
|
141 |
-
#: \includes\ArubaHiSpeedCacheAdmin.php:
|
142 |
msgid "Archives:"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: \includes\ArubaHiSpeedCacheAdmin.php:
|
146 |
msgid "(date, category, tag, author, custom taxonomies)"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: \includes\ArubaHiSpeedCacheAdmin.php:
|
150 |
-
#: \includes\ArubaHiSpeedCacheAdmin.php:
|
151 |
msgid "Comments:"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: \includes\
|
155 |
-
msgid "Sorry, you need to be an administrator to use Aruba HiSpeed Cache."
|
156 |
-
msgstr ""
|
157 |
-
|
158 |
-
#: \includes\ArubaHiSpeedCacheWpPurger.php:260
|
159 |
msgid "An error has occurred."
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: \includes\ArubaHiSpeedCacheWpPurger.php:
|
163 |
msgid "Sorry, you do not have the necessary privileges to edit these options."
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: \includes\ArubaHiSpeedCacheWpPurger.php:
|
167 |
msgid "Contact customer service"
|
168 |
msgstr ""
|
2 |
# This file is distributed under the same license as the Aruba HiSpeed Cache plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Aruba HiSpeed Cache 1.1.1\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/aruba-hispeed-cache\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"POT-Creation-Date: 2022-05-02T16:44:11+02:00\n"
|
13 |
+
"PO-Revision-Date: 2022-05-02T16:44:11+02:00\n"
|
14 |
"X-Generator: WP-CLI 2.0.1\n"
|
15 |
"X-Domain: aruba-hispeed-cache\n"
|
16 |
|
23 |
msgstr ""
|
24 |
|
25 |
#. Plugin URI of the plugin
|
26 |
+
msgid "https://hosting.aruba.it/wordpress.aspx"
|
27 |
msgstr ""
|
28 |
|
29 |
#. Description of the plugin
|
42 |
msgid "Aruba HiSpeed Cache Settings "
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: \admin\partials\admin-general-options.php:74
|
46 |
msgid "Save changes"
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: \admin\partials\admin-general-options.php:79
|
50 |
msgid "Purge entire cache"
|
51 |
msgstr ""
|
52 |
|
78 |
msgid "You are about to purge the entire cache. Do you want to continue?"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: \includes\ArubaHiSpeedCacheAdmin.php:179
|
82 |
+
msgid "Sorry, you need to be an administrator to use Aruba HiSpeed Cache."
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: \includes\ArubaHiSpeedCacheAdmin.php:199
|
86 |
msgid "Purge the page cache"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: \includes\ArubaHiSpeedCacheAdmin.php:203
|
90 |
msgid "Purge Cache"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: \includes\ArubaHiSpeedCacheAdmin.php:268
|
94 |
msgid "Settings"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: \includes\ArubaHiSpeedCacheAdmin.php:420
|
98 |
+
#: \includes\ArubaHiSpeedCacheAdmin.php:421
|
99 |
msgid "Purging options"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: \includes\ArubaHiSpeedCacheAdmin.php:428
|
103 |
msgid "Enable automatic purge"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: \includes\ArubaHiSpeedCacheAdmin.php:446
|
107 |
msgid "Automatically purge entire cache when:"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: \includes\ArubaHiSpeedCacheAdmin.php:451
|
111 |
+
#: \includes\ArubaHiSpeedCacheAdmin.php:452
|
112 |
msgid "Home page:"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: \includes\ArubaHiSpeedCacheAdmin.php:459
|
116 |
+
#: \includes\ArubaHiSpeedCacheAdmin.php:511
|
117 |
msgid "a <strong>post</strong> (or page/custom post) is <strong>modified</strong> or <strong>added</strong>."
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: \includes\ArubaHiSpeedCacheAdmin.php:466
|
121 |
+
#: \includes\ArubaHiSpeedCacheAdmin.php:518
|
122 |
msgid "a <strong>published post</strong> (or page/custom post) is <strong>cancelled</strong>."
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: \includes\ArubaHiSpeedCacheAdmin.php:473
|
126 |
+
#: \includes\ArubaHiSpeedCacheAdmin.php:474
|
127 |
msgid "Post/page/custom post type:"
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: \includes\ArubaHiSpeedCacheAdmin.php:481
|
131 |
msgid "a <strong>post</strong> is <strong>published</strong>."
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: \includes\ArubaHiSpeedCacheAdmin.php:488
|
135 |
+
#: \includes\ArubaHiSpeedCacheAdmin.php:533
|
136 |
msgid "a <strong>comment</strong> is <strong>approved/published</strong>."
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: \includes\ArubaHiSpeedCacheAdmin.php:495
|
140 |
+
#: \includes\ArubaHiSpeedCacheAdmin.php:540
|
141 |
msgid "a <strong>comment</strong> is <strong>unapproved/deleted</strong>."
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: \includes\ArubaHiSpeedCacheAdmin.php:502
|
145 |
+
#: \includes\ArubaHiSpeedCacheAdmin.php:504
|
146 |
msgid "Archives:"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: \includes\ArubaHiSpeedCacheAdmin.php:503
|
150 |
msgid "(date, category, tag, author, custom taxonomies)"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: \includes\ArubaHiSpeedCacheAdmin.php:525
|
154 |
+
#: \includes\ArubaHiSpeedCacheAdmin.php:526
|
155 |
msgid "Comments:"
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: \includes\ArubaHiSpeedCacheWpPurger.php:259
|
|
|
|
|
|
|
|
|
159 |
msgid "An error has occurred."
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: \includes\ArubaHiSpeedCacheWpPurger.php:260
|
163 |
msgid "Sorry, you do not have the necessary privileges to edit these options."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: \includes\ArubaHiSpeedCacheWpPurger.php:265
|
167 |
msgid "Contact customer service"
|
168 |
msgstr ""
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: HiSpeed Cache, Aruba, cache, caching, performance, pagespeed, optimize, WP
|
|
5 |
Requires at least: 5.4
|
6 |
Tested up to: 6.0
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 1.1.
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -70,6 +70,12 @@ wordpress_no_cache, comment_author, wordpress_logged_in_, yith_wcwl_products, wp
|
|
70 |
|
71 |
== Changelog ==
|
72 |
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
= 1.1.0 =
|
74 |
* Compatibility with PHP 5.6 and above;
|
75 |
* Compatibility with WordPress 5.4 and above;
|
@@ -81,11 +87,8 @@ wordpress_no_cache, comment_author, wordpress_logged_in_, yith_wcwl_products, wp
|
|
81 |
|
82 |
== Upgrade Notice ==
|
83 |
|
84 |
-
= 1.1.
|
85 |
-
*
|
86 |
-
*
|
87 |
-
*
|
88 |
-
*
|
89 |
-
|
90 |
-
= 1.0.0 =
|
91 |
-
* First stable version released.
|
5 |
Requires at least: 5.4
|
6 |
Tested up to: 6.0
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 1.1.1
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
70 |
|
71 |
== Changelog ==
|
72 |
|
73 |
+
= 1.1.1 =
|
74 |
+
* Problem resolution. Display "service can be activated" message when cache is purged.;
|
75 |
+
* Update Plugin URI value;
|
76 |
+
* Problem resolution. WP_CLI Activation and Deactivation;
|
77 |
+
* Additional option to view the check request information by visiting the page dominio.tld/wp-admin/options-general.php?page=aruba-hispeed-cache&debug=1
|
78 |
+
|
79 |
= 1.1.0 =
|
80 |
* Compatibility with PHP 5.6 and above;
|
81 |
* Compatibility with WordPress 5.4 and above;
|
87 |
|
88 |
== Upgrade Notice ==
|
89 |
|
90 |
+
= 1.1.1 =
|
91 |
+
* Problem resolution. Display "service can be activated" message when cache is purged.;
|
92 |
+
* Update Plugin URI value;
|
93 |
+
* Problem resolution. WP_CLI Activation and Deactivation;
|
94 |
+
* Additional option to view the check request information by visiting the page dominio.tld/wp-admin/options-general.php?page=aruba-hispeed-cache&debug=1
|
|
|
|
|
|