Changeset 3204886
- Timestamp:
- 12/09/2024 01:26:31 PM (12 months ago)
- Location:
- sg-cachepress/trunk
- Files:
-
- 1 added
- 8 edited
-
core/Combinator/Js_Combinator.php (modified) (1 diff)
-
core/Database_Optimizer/Database_Optimizer.php (modified) (1 diff)
-
core/File_Cacher/File_Cacher.php (modified) (1 diff)
-
core/Install_Service/Install_7_7_2.php (added)
-
core/Install_Service/Install_Service.php (modified) (2 diffs)
-
core/Supercacher/Supercacher.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
sg-cachepress.php (modified) (2 diffs)
-
templates/memcached.tpl (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sg-cachepress/trunk/core/Combinator/Js_Combinator.php
r3163985 r3204886 506 506 'wp-hooks', 507 507 'wc-square', 508 'wp-dom-ready', 509 'siteground-optimizer-lazy-sizes-js', 508 510 ); 509 511 -
sg-cachepress/trunk/core/Database_Optimizer/Database_Optimizer.php
r3174268 r3204886 264 264 foreach ( $tables as $table ) { 265 265 // Check if we need to skip that specific table from the optimization. 266 if ( in_array( $table->table_name, $all_tables ) ) {266 if ( empty( $table->table_name ) || in_array( $table->table_name, $all_tables ) ) { 267 267 continue; 268 268 } -
sg-cachepress/trunk/core/File_Cacher/File_Cacher.php
r3183808 r3204886 177 177 */ 178 178 public function get_cache_dir() { 179 // Create the parent cache dir, if it does not exist for some reason. 180 $parent_cache_dir = WP_CONTENT_DIR . '/cache/'; 181 182 if ( ! $this->wp_filesystem->is_dir( $parent_cache_dir ) ) { 183 $this->wp_filesystem->mkdir( $parent_cache_dir ); 184 } 185 179 186 // Set the main cache dir. 180 187 $dir = WP_CONTENT_DIR . '/cache/sgo-cache/'; -
sg-cachepress/trunk/core/Install_Service/Install_Service.php
r3090872 r3204886 38 38 use SiteGround_Optimizer\Install_Service\Install_7_2_7; 39 39 use SiteGround_Optimizer\Install_Service\Install_7_4_0; 40 use SiteGround_Optimizer\Install_Service\Install_7_7_2; 40 41 use SiteGround_Optimizer\Install_Service\Install_Cleanup; 41 42 use SiteGround_Optimizer\Supercacher\Supercacher; … … 92 93 new Install_7_2_7(), 93 94 new Install_7_4_0(), 95 new Install_7_7_2(), 94 96 ); 95 97 } -
sg-cachepress/trunk/core/Supercacher/Supercacher.php
r3183808 r3204886 118 118 'create_term', 119 119 'delete_term', 120 'update_option_woocommerce_coming_soon', 121 'update_option_woocommerce_store_pages_only', 120 122 ), 121 123 ); -
sg-cachepress/trunk/readme.txt
r3194236 r3204886 5 5 Requires PHP: 7.0 6 6 Tested up to: 6.7 7 Stable tag: 7.7. 17 Stable tag: 7.7.2 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 118 118 119 119 == Changelog == 120 121 = Version 7.7.2 = 122 Release Date: Dec 9th, 2024 123 124 * Memcache improvements 125 * JavaScript Combination improvements 126 * Database Optimization improvements 127 * Woocommerce compatibility improvements 128 * File-caching improvements 129 120 130 = Version 7.7.1 = 121 131 Release Date: Nov 21st, 2024 -
sg-cachepress/trunk/sg-cachepress.php
r3194236 r3204886 11 11 * Plugin URI: https://siteground.com 12 12 * Description: This plugin will link your WordPress application with all the performance optimizations provided by SiteGround 13 * Version: 7.7. 113 * Version: 7.7.2 14 14 * Author: SiteGround 15 15 * Author URI: https://www.siteground.com … … 34 34 // Define version constant. 35 35 if ( ! defined( __NAMESPACE__ . '\VERSION' ) ) { 36 define( __NAMESPACE__ . '\VERSION', '7.7. 1' );36 define( __NAMESPACE__ . '\VERSION', '7.7.2' ); 37 37 } 38 38 -
sg-cachepress/trunk/templates/memcached.tpl
r3090872 r3204886 3 3 Plugin Name: Memcached 4 4 Description: Memcached Dropin for SGO 5 Version: 1.0. 05 Version: 1.0.1 6 6 7 7 Install this file to wp-content/object-cache.php … … 245 245 } else if ( in_array( $group, $this->no_mc_groups ) ) { 246 246 $this->cache[$key] = $value = false; 247 if ( strpos( $key, 'atum-stock-manager-for-woocommerce' ) ) { 248 $this->cache[$key] = $value = null; 249 } 247 250 } else { 248 251 $value = $mc->get( $key );
Note: See TracChangeset
for help on using the changeset viewer.