Skip to content

Commit

Permalink
v6.4-a4: * **Core** Minimum required PHP version escalated to PHP v7.…
Browse files Browse the repository at this point in the history
…2.0.
  • Loading branch information
Hai Zheng committed Jul 29, 2024
1 parent 2d7ffc6 commit ee77bcf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 4 additions & 4 deletions litespeed-cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Plugin Name: LiteSpeed Cache
* Plugin URI: https://www.litespeedtech.com/products/cache-plugins/wordpress-acceleration
* Description: High-performance page caching and site optimization from LiteSpeed
* Version: 6.4-a3
* Version: 6.4-a4
* Author: LiteSpeed Technologies
* Author URI: https://www.litespeedtech.com
* License: GPLv3
Expand Down Expand Up @@ -34,7 +34,7 @@
return;
}

!defined('LSCWP_V') && define('LSCWP_V', '6.4-a3');
!defined('LSCWP_V') && define('LSCWP_V', '6.4-a4');

!defined('LSCWP_CONTENT_DIR') && define('LSCWP_CONTENT_DIR', WP_CONTENT_DIR);
!defined('LSCWP_DIR') && define('LSCWP_DIR', __DIR__ . '/'); // Full absolute path '/var/www/html/***/wp-content/plugins/litespeed-cache/' or MU
Expand Down Expand Up @@ -174,8 +174,8 @@ function wp_create_nonce_litespeed_esi($action = -1)
if (!function_exists('run_litespeed_cache')) {
function run_litespeed_cache()
{
//Check minimum PHP requirements, which is 5.3 at the moment.
if (version_compare(PHP_VERSION, '5.3.0', '<')) {
//Check minimum PHP requirements, which is 7.2 at the moment.
if (version_compare(PHP_VERSION, '7.2.0', '<')) {
return;
}

Expand Down
4 changes: 3 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Contributors: LiteSpeedTech
Tags: caching, optimize, performance, pagespeed, core web vitals, seo, speed, image optimize, compress, object cache, redis, memcached, database cleaner
Requires at least: 4.0
Tested up to: 6.6
Tested up to: 6.6.1
Stable tag: 6.3.0.1
License: GPLv3
License URI: http://www.gnu.org/licenses/gpl.html
Expand Down Expand Up @@ -253,6 +253,8 @@ The vast majority of plugins and themes are compatible with LiteSpeed Cache. The
= 6.4 - Sep 2024 =
* **Cache** Corrected QC and LSADC cache hit status.
* **GUI** Regrouped CDN menu.
* **3rd** Add Elementor Edit button back in ESI. (PR#635)
* **Core** Minimum required PHP version escalated to PHP v7.2.0.

= 6.3.0.1 - Jul 29 2024 =
* 🔥🐞**Rest** Disabled WP default Editor cache for REST requests to fix editor errors. (Shivam)
Expand Down

0 comments on commit ee77bcf

Please sign in to comment.