Version Description
- to fix PHP Notice: Undefined offset: -1 js-utilities.php on line 84
- to show the details of the error on the Cloudflare cdn integraiton
Download this release
Release Info
Developer | emrevona |
Plugin | WP Fastest Cache |
Version | 0.9.1.3 |
Comparing to | |
See all releases |
Code changes from version 0.9.1.2 to 0.9.1.3
- inc/cdn.php +4 -0
- inc/js-utilities.php +4 -2
- readme.txt +6 -1
- wpFastestCache.php +1 -1
inc/cdn.php
CHANGED
@@ -186,6 +186,10 @@
|
|
186 |
|
187 |
if(isset($zone->errors) && isset($zone->errors[0])){
|
188 |
$res = array("success" => false, "error_message" => $zone->errors[0]->message);
|
|
|
|
|
|
|
|
|
189 |
}else{
|
190 |
if(isset($zone->result) && isset($zone->result[0])){
|
191 |
foreach ($zone->result as $zone_key => $zone_value) {
|
186 |
|
187 |
if(isset($zone->errors) && isset($zone->errors[0])){
|
188 |
$res = array("success" => false, "error_message" => $zone->errors[0]->message);
|
189 |
+
|
190 |
+
if(isset($zone->errors[0]->error_chain) && isset($zone->errors[0]->error_chain[0])){
|
191 |
+
$res = array("success" => false, "error_message" => $zone->errors[0]->error_chain[0]->message);
|
192 |
+
}
|
193 |
}else{
|
194 |
if(isset($zone->result) && isset($zone->result[0])){
|
195 |
foreach ($zone->result as $zone_key => $zone_value) {
|
inc/js-utilities.php
CHANGED
@@ -81,8 +81,10 @@
|
|
81 |
}
|
82 |
}
|
83 |
}else{
|
84 |
-
|
85 |
-
|
|
|
|
|
86 |
}
|
87 |
}else{
|
88 |
if($key > 0 && $prev_content){
|
81 |
}
|
82 |
}
|
83 |
}else{
|
84 |
+
if($key > 0 && $prev_content){
|
85 |
+
$this->mergeJs($prev_content, $this->jsLinks[$key - 1]);
|
86 |
+
$prev_content = "";
|
87 |
+
}
|
88 |
}
|
89 |
}else{
|
90 |
if($key > 0 && $prev_content){
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://profiles.wordpress.org/emrevona/
|
|
4 |
Tags: cache, caching, performance, wp-cache, total cache, super cache, cdn
|
5 |
Requires at least: 3.3
|
6 |
Tested up to: 5.5
|
7 |
-
Stable tag: 0.9.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -39,6 +39,7 @@ Setup of this plugin is so easy. You don't need to modify the .htacces file. It
|
|
39 |
12. Cloudflare support
|
40 |
13. Preload Cache - Create the cache of all the site automatically
|
41 |
14. Exclude pages and user-agents
|
|
|
42 |
|
43 |
<h4>Performance Optimization</h4>
|
44 |
|
@@ -124,6 +125,10 @@ The free version is enough to speed up your site but in the premium version ther
|
|
124 |
|
125 |
== Changelog ==
|
126 |
|
|
|
|
|
|
|
|
|
127 |
= 0.9.1.2 =
|
128 |
* to add webp extension for CDN
|
129 |
* to replace the attribute which is data-bg-webp with cdn-url
|
4 |
Tags: cache, caching, performance, wp-cache, total cache, super cache, cdn
|
5 |
Requires at least: 3.3
|
6 |
Tested up to: 5.5
|
7 |
+
Stable tag: 0.9.1.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
39 |
12. Cloudflare support
|
40 |
13. Preload Cache - Create the cache of all the site automatically
|
41 |
14. Exclude pages and user-agents
|
42 |
+
15. WP-CLI cache clearing
|
43 |
|
44 |
<h4>Performance Optimization</h4>
|
45 |
|
125 |
|
126 |
== Changelog ==
|
127 |
|
128 |
+
= 0.9.1.3 =
|
129 |
+
* to fix PHP Notice: Undefined offset: -1 js-utilities.php on line 84
|
130 |
+
* to show the details of the error on the Cloudflare cdn integraiton
|
131 |
+
|
132 |
= 0.9.1.2 =
|
133 |
* to add webp extension for CDN
|
134 |
* to replace the attribute which is data-bg-webp with cdn-url
|
wpFastestCache.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WP Fastest Cache
|
4 |
Plugin URI: http://wordpress.org/plugins/wp-fastest-cache/
|
5 |
Description: The simplest and fastest WP Cache system
|
6 |
-
Version: 0.9.1.
|
7 |
Author: Emre Vona
|
8 |
Author URI: http://tr.linkedin.com/in/emrevona
|
9 |
Text Domain: wp-fastest-cache
|
3 |
Plugin Name: WP Fastest Cache
|
4 |
Plugin URI: http://wordpress.org/plugins/wp-fastest-cache/
|
5 |
Description: The simplest and fastest WP Cache system
|
6 |
+
Version: 0.9.1.3
|
7 |
Author: Emre Vona
|
8 |
Author URI: http://tr.linkedin.com/in/emrevona
|
9 |
Text Domain: wp-fastest-cache
|