Changeset 3274957
- Timestamp:
- 04/16/2025 04:43:19 PM (9 months ago)
- Location:
- fastpixel-website-accelerator/trunk
- Files:
-
- 6 edited
-
fastpixel.php (modified) (2 diffs)
-
inc/backend/controllers/cache.php (modified) (1 diff)
-
inc/backend/models/diag.php (modified) (1 diff)
-
inc/classes/cache-files.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
-
vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fastpixel-website-accelerator/trunk/fastpixel.php
r3264682 r3274957 5 5 * Description: Faster WordPress Made Easy – Solve all your website speed problems effortlessly with just a few clicks. 6 6 * Author: ShortPixel 7 * Version: 1.0.4 67 * Version: 1.0.47 8 8 * Text Domain: fastpixel-website-accelerator 9 9 * Domain Path: /languages … … 21 21 defined('ABSPATH') || exit; 22 22 23 define('FASTPIXEL_VERSION', '1.0.4 6');23 define('FASTPIXEL_VERSION', '1.0.47'); 24 24 define('FASTPIXEL_NAME', 'FastPixel'); 25 25 if (!defined('FASTPIXEL_PLUGIN_DIR')) -
fastpixel-website-accelerator/trunk/inc/backend/controllers/cache.php
r3264682 r3274957 115 115 }, 10, 1); 116 116 117 add_action('wp_trash_post', function ($post_id, $old_status ) {117 add_action('wp_trash_post', function ($post_id, $old_status = '') { 118 118 if ($this->debug) { 119 119 FASTPIXEL_DEBUG::log('Class FASTPIXEL_Backend_Cache: ACTION wp_trash_post'); -
fastpixel-website-accelerator/trunk/inc/backend/models/diag.php
r3083183 r3274957 21 21 $diag_controller = FASTPIXEL_Diag::get_instance(); 22 22 $diag_controller->add_test_model($this); 23 add_action(' plugins_loaded', [$this, 'l10n_name'], 10);23 add_action('init', [$this, 'l10n_name'], 10); 24 24 } 25 25 -
fastpixel-website-accelerator/trunk/inc/classes/cache-files.php
r3223801 r3274957 235 235 * no need to escape output, escape functions are not available in advanced-cache.php 236 236 */ 237 ob_start(); 237 238 // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_readfile -- direct file output to the browser. 238 239 readfile($path); // phpcs:ignore … … 242 243 echo '<!-- Optimized and served by FastPixel.io -->'; 243 244 } 244 @ob_end_flush();245 flush();246 245 } 247 246 if ($this->debug) { … … 305 304 FASTPIXEL_Debug::log('Class FASTPIXEL_Cache_files: stopping wordpress and removing request'); 306 305 } 306 @ob_end_flush(); 307 flush(); 307 308 //removing default hook which do cache request 308 309 remove_action('fastpixel/shutdown', [$fastpixel_cache, 'request_page_cache'], 20); -
fastpixel-website-accelerator/trunk/readme.txt
r3264682 r3274957 3 3 Tags: speed, cache, caching, performance, web vitals 4 4 Requires at least: 6.0 5 Tested up to: 6. 75 Tested up to: 6.8 6 6 Requires PHP: 5.6 7 Stable tag: 1.0.4 67 Stable tag: 1.0.47 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 201 201 == Changelog == 202 202 203 = 1.0.47 = 204 205 🧹 The Clean Logs Update 206 207 Release Date: April 16, 2025 208 209 🛠️ Fixes & Improvements 210 211 * Error Log Cleanup: Fixed several notices that were cluttering error logs in some cases, helping keep your server logs clean and easy to read. 212 * Bugfixes: Addressed various minor issues to improve stability and performance. 213 214 Update now for a smoother, quieter backend experience! 🚀 215 203 216 = 1.0.46 = 204 217 … … 212 225 213 226 Update now to keep your WooCommerce store running fast and flawlessly! 🚀 214 215 227 216 228 = 1.0.45 = -
fastpixel-website-accelerator/trunk/vendor/composer/installed.php
r3263467 r3274957 4 4 'pretty_version' => 'dev-main', 5 5 'version' => 'dev-main', 6 'reference' => ' 5389b389b24d312846f67829b5f7cc62699aa32f',6 'reference' => 'f8ca4de294fc3f91f04a50eae0e9a89872d684a9', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 14 14 'pretty_version' => 'dev-main', 15 15 'version' => 'dev-main', 16 'reference' => ' 5389b389b24d312846f67829b5f7cc62699aa32f',16 'reference' => 'f8ca4de294fc3f91f04a50eae0e9a89872d684a9', 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.