Version Description
- Mar 15 2021 =
- Toolbox Fixed Beta Test upgrade error when upgrading to v3.7+.
Download this release
Release Info
Developer | LiteSpeedTech |
Plugin | LiteSpeed Cache |
Version | 3.6.4 |
Comparing to | |
See all releases |
Code changes from version 3.6.3 to 3.6.4
- litespeed-cache.php +2 -2
- readme.txt +4 -1
- src/debug2.cls.php +1 -1
litespeed-cache.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: LiteSpeed Cache
|
4 |
* Plugin URI: https://www.litespeedtech.com/products/cache-plugins/wordpress-acceleration
|
5 |
* Description: High-performance page caching and site optimization from LiteSpeed
|
6 |
-
* Version: 3.6.
|
7 |
* Author: LiteSpeed Technologies
|
8 |
* Author URI: https://www.litespeedtech.com
|
9 |
* License: GPLv3
|
@@ -33,7 +33,7 @@ if ( class_exists( 'LiteSpeed\Core' ) || defined( 'LSCWP_DIR' ) ) {
|
|
33 |
return;
|
34 |
}
|
35 |
|
36 |
-
! defined( 'LSCWP_V' ) && define( 'LSCWP_V', '3.6.
|
37 |
|
38 |
! defined( 'LSCWP_CONTENT_DIR' ) && define( 'LSCWP_CONTENT_DIR', WP_CONTENT_DIR ) ;
|
39 |
! defined( 'LSCWP_DIR' ) && define( 'LSCWP_DIR', __DIR__ . '/' ) ;// Full absolute path '/var/www/html/***/wp-content/plugins/litespeed-cache/' or MU
|
3 |
* Plugin Name: LiteSpeed Cache
|
4 |
* Plugin URI: https://www.litespeedtech.com/products/cache-plugins/wordpress-acceleration
|
5 |
* Description: High-performance page caching and site optimization from LiteSpeed
|
6 |
+
* Version: 3.6.4
|
7 |
* Author: LiteSpeed Technologies
|
8 |
* Author URI: https://www.litespeedtech.com
|
9 |
* License: GPLv3
|
33 |
return;
|
34 |
}
|
35 |
|
36 |
+
! defined( 'LSCWP_V' ) && define( 'LSCWP_V', '3.6.4' );
|
37 |
|
38 |
! defined( 'LSCWP_CONTENT_DIR' ) && define( 'LSCWP_CONTENT_DIR', WP_CONTENT_DIR ) ;
|
39 |
! defined( 'LSCWP_DIR' ) && define( 'LSCWP_DIR', __DIR__ . '/' ) ;// Full absolute path '/var/www/html/***/wp-content/plugins/litespeed-cache/' or MU
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: LiteSpeedTech
|
|
3 |
Tags: caching, optimize, performance, pagespeed, seo, speed, image optimize, compress, object cache, redis, memcached, database cleaner
|
4 |
Requires at least: 4.0
|
5 |
Tested up to: 5.7
|
6 |
-
Stable tag: 3.6.
|
7 |
License: GPLv3
|
8 |
License URI: http://www.gnu.org/licenses/gpl.html
|
9 |
|
@@ -247,6 +247,9 @@ The vast majority of plugins and themes are compatible with LiteSpeed Cache. The
|
|
247 |
|
248 |
== Changelog ==
|
249 |
|
|
|
|
|
|
|
250 |
= 3.6.3 - Mar 10 2021 =
|
251 |
* **Core** Fixed potential upgrade failure when new versions have changes in activation related functions.
|
252 |
* **Core** Upgrade process won't get deactivated anymore on Network setup.
|
3 |
Tags: caching, optimize, performance, pagespeed, seo, speed, image optimize, compress, object cache, redis, memcached, database cleaner
|
4 |
Requires at least: 4.0
|
5 |
Tested up to: 5.7
|
6 |
+
Stable tag: 3.6.4
|
7 |
License: GPLv3
|
8 |
License URI: http://www.gnu.org/licenses/gpl.html
|
9 |
|
247 |
|
248 |
== Changelog ==
|
249 |
|
250 |
+
= 3.6.4 - Mar 15 2021 =
|
251 |
+
* **Toolbox** Fixed Beta Test upgrade error when upgrading to v3.7+.
|
252 |
+
|
253 |
= 3.6.3 - Mar 10 2021 =
|
254 |
* **Core** Fixed potential upgrade failure when new versions have changes in activation related functions.
|
255 |
* **Core** Upgrade process won't get deactivated anymore on Network setup.
|
src/debug2.cls.php
CHANGED
@@ -28,7 +28,7 @@ class Debug2 extends Instance {
|
|
28 |
*/
|
29 |
protected function __construct() {
|
30 |
self::$log_path = LSCWP_CONTENT_DIR . '/debug.log';
|
31 |
-
if ( ! empty( $_SERVER[ 'HTTP_USER_AGENT' ] ) && strpos( $_SERVER[ 'HTTP_USER_AGENT' ],
|
32 |
self::$log_path = LSCWP_CONTENT_DIR . '/crawler.log';
|
33 |
}
|
34 |
|
28 |
*/
|
29 |
protected function __construct() {
|
30 |
self::$log_path = LSCWP_CONTENT_DIR . '/debug.log';
|
31 |
+
if ( ! empty( $_SERVER[ 'HTTP_USER_AGENT' ] ) && strpos( $_SERVER[ 'HTTP_USER_AGENT' ], 'lscache_' ) === 0 ) {
|
32 |
self::$log_path = LSCWP_CONTENT_DIR . '/crawler.log';
|
33 |
}
|
34 |
|