Changeset 2321389
- Timestamp:
- 06/10/2020 08:06:27 AM (6 years ago)
- Location:
- wpbase-cache/trunk
- Files:
-
- 3 edited
-
includes/object-cache.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
wpbase-cache.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wpbase-cache/trunk/includes/object-cache.php
r2006654 r2321389 15 15 16 16 if ( ! defined( 'WP_REDIS_DISABLED' ) || ! WP_REDIS_DISABLED ) : 17 17 define('WP_CACHE_KEY_SALT', DB_NAME); 18 18 /** 19 19 * Adds a value to cache. -
wpbase-cache/trunk/readme.txt
r2153982 r2321389 3 3 Tags: cache,chaching,speed,performance,db cache,optimization,nginx,varnish 4 4 Requires at least: 3.5 5 Tested up to: 5. 25 Tested up to: 5.4.1 6 6 Stable tag: trunk 7 7 Donate link: -
wpbase-cache/trunk/wpbase-cache.php
r2153982 r2321389 2 2 /* 3 3 Plugin Name: WPBase-Cache 4 Plugin URI: https:// github.com/baseapp/wpbase-cache5 Description: A wordpress plugin for using all caches on varnish, nginx, php-fpm stack with php-apc. This pluginincludes db-cache-reloaded-fix for dbcache.6 Version: 5.5. 14 Plugin URI: https://www.wpoven.com/ 5 Description: Custom WordPress Caching plugin for WPOven Hosted Sites which uses all caches on varnish, nginx, php-fpm stack with php-apc. This plugin also includes db-cache-reloaded-fix for dbcache. 6 Version: 5.5.2 7 7 Author: Vikrant Datta 8 Author URI: http ://blog.wpoven.com8 Author URI: https://www.wpoven.com/ 9 9 License: GPL2 10 10 … … 27 27 define('WPBASE_CACHE_DIR', WP_PLUGIN_DIR . '/wpbase-cache'); 28 28 define('WPBASE_CACHE_INC_DIR', WP_PLUGIN_DIR . '/wpbase-cache/inc'); 29 30 preg_match('/define.*DB_NAME.*\'(.*)\'/', $configs, $m); 31 $dbname = $m[1]; 32 define('DB_NAME', $dbname); 33 29 34 add_action('admin_enqueue_scripts', function() { 30 35 wp_register_style('style', plugin_dir_url(__FILE__) . '/style.css', false);
Note: See TracChangeset
for help on using the changeset viewer.