Plugin Directory

Changeset 3147731


Ignore:
Timestamp:
09/06/2024 05:23:55 PM (15 months ago)
Author:
LiteSpeedTech
Message:

Release v6.5.0.2

Location:
litespeed-cache
Files:
337 added
3 edited

Legend:

Unmodified
Added
Removed
  • litespeed-cache/trunk/litespeed-cache.php

    r3146657 r3147731  
    55 * Plugin URI:        https://www.litespeedtech.com/products/cache-plugins/wordpress-acceleration
    66 * Description:       High-performance page caching and site optimization from LiteSpeed
    7  * Version:           6.5.0.1
     7 * Version:           6.5.0.2
    88 * Author:            LiteSpeed Technologies
    99 * Author URI:        https://www.litespeedtech.com
     
    3535}
    3636
    37 !defined('LSCWP_V') && define('LSCWP_V', '6.5.0.1');
     37!defined('LSCWP_V') && define('LSCWP_V', '6.5.0.2');
    3838
    3939!defined('LSCWP_CONTENT_DIR') && define('LSCWP_CONTENT_DIR', WP_CONTENT_DIR);
  • litespeed-cache/trunk/readme.txt

    r3146658 r3147731  
    44Requires at least: 4.9
    55Tested up to: 6.6.1
    6 Stable tag: 6.5.0.1
     6Stable tag: 6.5.0.2
    77License: GPLv3
    88License URI: http://www.gnu.org/licenses/gpl.html
     
    255255== Changelog ==
    256256
     257= 6.5.0.2 - Sep 6 2024 =
     258* **Debug** Compatibility improvement for WP installations w/o `AUTH_KEY` defined in `wp-config.php`.
     259
    257260= 6.5.0.1 - Sep 4 2024 =
    258261* 🔥**Debug** Fixed a corner case fatal error when Object Cache is ON but failed to connect, and `wp-content/litespeed` directory is not writable, and debug option is ON.
  • litespeed-cache/trunk/src/debug2.cls.php

    r3146657 r3147731  
    9090            $type = 'purge';
    9191        }
    92         $rand = substr(md5(substr(AUTH_KEY, -16)), -16);
     92                $key = defined('AUTH_KEY') ? AUTH_KEY : md5(__FILE__);
     93        $rand = substr(md5(substr($key, -16)), -16);
    9394        return $type . $rand . '.log';
    9495    }
Note: See TracChangeset for help on using the changeset viewer.