Changeset 3042862
- Timestamp:
- 02/29/2024 04:50:57 AM (2 years ago)
- Location:
- rabbit-loader
- Files:
-
- 1 added
- 9 edited
- 11 copied
-
tags/2.19.18 (added)
-
tags/2.19.18/admin (copied) (copied from rabbit-loader/trunk/admin)
-
tags/2.19.18/advanced-cache.php (copied) (copied from rabbit-loader/trunk/advanced-cache.php)
-
tags/2.19.18/assets (copied) (copied from rabbit-loader/trunk/assets)
-
tags/2.19.18/autoload.php (copied) (copied from rabbit-loader/trunk/autoload.php) (1 diff)
-
tags/2.19.18/images (copied) (copied from rabbit-loader/trunk/images)
-
tags/2.19.18/inc (copied) (copied from rabbit-loader/trunk/inc)
-
tags/2.19.18/inc/RabbitLoader/SDK/Cache.php (modified) (3 diffs)
-
tags/2.19.18/inc/RabbitLoader/SDK/Request.php (modified) (1 diff)
-
tags/2.19.18/inc/admin.php (modified) (1 diff)
-
tags/2.19.18/index.php (copied) (copied from rabbit-loader/trunk/index.php)
-
tags/2.19.18/rabbit-loader.php (copied) (copied from rabbit-loader/trunk/rabbit-loader.php) (1 diff)
-
tags/2.19.18/readme.txt (copied) (copied from rabbit-loader/trunk/readme.txt) (2 diffs)
-
tags/2.19.18/uninstall.php (copied) (copied from rabbit-loader/trunk/uninstall.php)
-
tags/2.19.18/wp-cli.php (copied) (copied from rabbit-loader/trunk/wp-cli.php)
-
trunk/autoload.php (modified) (1 diff)
-
trunk/inc/RabbitLoader/SDK/Cache.php (modified) (3 diffs)
-
trunk/inc/RabbitLoader/SDK/Request.php (modified) (1 diff)
-
trunk/inc/admin.php (modified) (1 diff)
-
trunk/rabbit-loader.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rabbit-loader/tags/2.19.18/autoload.php
r3042861 r3042862 4 4 define('RABBITLOADER_CACHE_DIR', WP_CONTENT_DIR . DIRECTORY_SEPARATOR . "rabbitloader"); 5 5 define('RABBITLOADER_PLUG_URL', plugin_dir_url(__FILE__)); 6 define('RABBITLOADER_PLUG_VERSION', '2.19.1 7');6 define('RABBITLOADER_PLUG_VERSION', '2.19.18'); 7 7 define('RABBITLOADER_TEXT_DOMAIN', 'rabbit-loader'); 8 8 define('RABBITLOADER_PLUG_ENV', 'PROD'); -
rabbit-loader/tags/2.19.18/inc/RabbitLoader/SDK/Cache.php
r3030444 r3042862 49 49 if (!mkdir($rootDir . self::TTL_LONG, 0775, true)) { 50 50 error_log("rabbitloader failed to create cache directory inside " . $rootDir); 51 Util::sendHeader('x-rl-create-dirs: failed', true); 51 52 } 52 53 } … … 54 55 if (!mkdir($rootDir . self::TTL_SHORT, 0775, true)) { 55 56 error_log("rabbitloader failed to create cache directory inside " . $rootDir); 57 Util::sendHeader('x-rl-create-dirs: failed', true); 56 58 } else { 57 59 //directory created successfully … … 185 187 $count = 0; 186 188 if (!$this->valid($content)) { 189 Util::sendHeader('x-rl-save: invalid-' . $ttl, true); 187 190 return $count; 188 191 } -
rabbit-loader/tags/2.19.18/inc/RabbitLoader/SDK/Request.php
r3030444 r3042862 135 135 136 136 $varsLenO = count($qsvars); 137 if (isset($qsvars['rl-no-optimization']) ) {137 if (isset($qsvars['rl-no-optimization']) || isset($_SERVER['HTTP_RL_NO_OPTIMIZATION']) || isset($_SERVER['HTTP_RL_CSS'])) { 138 138 unset($qsvars['rl-no-optimization']); 139 139 $this->isNoOptimization = true; -
rabbit-loader/tags/2.19.18/inc/admin.php
r3039136 r3042862 66 66 $user_options['private_mode_ts'] = date('c'); 67 67 RabbitLoader_21_Core::updateUserOption($user_options); 68 69 try { 70 //remove public pages cache, main purpose is to purge TPV 71 RabbitLoader_21_TP::purge_all($tp_purge_count); 72 } catch (\Throwable $e) { 73 RabbitLoader_21_Core::on_exception($e); 74 } 75 68 76 RabbitLoader_21_Core::sendJsonResponse($response); 69 77 }); -
rabbit-loader/tags/2.19.18/rabbit-loader.php
r3042861 r3042862 7 7 * Author URI: https://rabbitloader.com/ 8 8 * Description: RabbitLoader can improve Google PageSpeed score and get you 100 out of 100 by improving the page load time to just a few milliseconds. It improves the Core Web Vitals score for your pages and boost PageSpeed score to help better search rankings and best the experience for your end user. 9 * Version: 2.19.1 79 * Version: 2.19.18 10 10 * Text Domain: rabbit-loader 11 11 */ -
rabbit-loader/tags/2.19.18/readme.txt
r3042861 r3042862 5 5 Requires at least: 4.7 6 6 Tested up to: 6.4 7 Stable tag: 2.19.1 77 Stable tag: 2.19.18 8 8 Requires PHP: 5.6 9 9 License: GNU General Public License, version 2 … … 315 315 == Changelog == 316 316 317 = 2.19.18 = 318 * Invalidate cache when Me mode is toggled 319 320 = 2.19.17 = 321 * Compatibility improvement for PHP 5.6 322 317 323 = 2.19.16 = 318 324 * Prevent errors when plugin folder is directly deleted -
rabbit-loader/trunk/autoload.php
r3039136 r3042862 4 4 define('RABBITLOADER_CACHE_DIR', WP_CONTENT_DIR . DIRECTORY_SEPARATOR . "rabbitloader"); 5 5 define('RABBITLOADER_PLUG_URL', plugin_dir_url(__FILE__)); 6 define('RABBITLOADER_PLUG_VERSION', '2.19.1 7');6 define('RABBITLOADER_PLUG_VERSION', '2.19.18'); 7 7 define('RABBITLOADER_TEXT_DOMAIN', 'rabbit-loader'); 8 8 define('RABBITLOADER_PLUG_ENV', 'PROD'); -
rabbit-loader/trunk/inc/RabbitLoader/SDK/Cache.php
r3030444 r3042862 49 49 if (!mkdir($rootDir . self::TTL_LONG, 0775, true)) { 50 50 error_log("rabbitloader failed to create cache directory inside " . $rootDir); 51 Util::sendHeader('x-rl-create-dirs: failed', true); 51 52 } 52 53 } … … 54 55 if (!mkdir($rootDir . self::TTL_SHORT, 0775, true)) { 55 56 error_log("rabbitloader failed to create cache directory inside " . $rootDir); 57 Util::sendHeader('x-rl-create-dirs: failed', true); 56 58 } else { 57 59 //directory created successfully … … 185 187 $count = 0; 186 188 if (!$this->valid($content)) { 189 Util::sendHeader('x-rl-save: invalid-' . $ttl, true); 187 190 return $count; 188 191 } -
rabbit-loader/trunk/inc/RabbitLoader/SDK/Request.php
r3030444 r3042862 135 135 136 136 $varsLenO = count($qsvars); 137 if (isset($qsvars['rl-no-optimization']) ) {137 if (isset($qsvars['rl-no-optimization']) || isset($_SERVER['HTTP_RL_NO_OPTIMIZATION']) || isset($_SERVER['HTTP_RL_CSS'])) { 138 138 unset($qsvars['rl-no-optimization']); 139 139 $this->isNoOptimization = true; -
rabbit-loader/trunk/inc/admin.php
r3039136 r3042862 66 66 $user_options['private_mode_ts'] = date('c'); 67 67 RabbitLoader_21_Core::updateUserOption($user_options); 68 69 try { 70 //remove public pages cache, main purpose is to purge TPV 71 RabbitLoader_21_TP::purge_all($tp_purge_count); 72 } catch (\Throwable $e) { 73 RabbitLoader_21_Core::on_exception($e); 74 } 75 68 76 RabbitLoader_21_Core::sendJsonResponse($response); 69 77 }); -
rabbit-loader/trunk/rabbit-loader.php
r3039136 r3042862 7 7 * Author URI: https://rabbitloader.com/ 8 8 * Description: RabbitLoader can improve Google PageSpeed score and get you 100 out of 100 by improving the page load time to just a few milliseconds. It improves the Core Web Vitals score for your pages and boost PageSpeed score to help better search rankings and best the experience for your end user. 9 * Version: 2.19.1 79 * Version: 2.19.18 10 10 * Text Domain: rabbit-loader 11 11 */ -
rabbit-loader/trunk/readme.txt
r3039136 r3042862 5 5 Requires at least: 4.7 6 6 Tested up to: 6.4 7 Stable tag: 2.19.1 77 Stable tag: 2.19.18 8 8 Requires PHP: 5.6 9 9 License: GNU General Public License, version 2 … … 315 315 == Changelog == 316 316 317 = 2.19.18 = 318 * Invalidate cache when Me mode is toggled 319 320 = 2.19.17 = 321 * Compatibility improvement for PHP 5.6 322 317 323 = 2.19.16 = 318 324 * Prevent errors when plugin folder is directly deleted
Note: See TracChangeset
for help on using the changeset viewer.