Changeset 2441989
- Timestamp:
- 12/18/2020 04:37:08 AM (5 years ago)
- Location:
- wp-roids/trunk
- Files:
-
- 3 edited
-
CHANGELOG.md (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
wp-roids.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-roids/trunk/CHANGELOG.md
r2166349 r2441989 1 = v3.2.1 = 2 3 - **Improved:** Logic condition regarding DONOTCACHEPAGE tweaked 4 1 5 = v3.2.0 = 2 6 -
wp-roids/trunk/readme.txt
r2166349 r2441989 5 5 Tags: cache,caching,minify,page speed,optimize,performance,compression 6 6 Requires at least: 4.2 7 Tested up to: 5. 2.37 Tested up to: 5.6 8 8 Requires PHP: 5.4.0 9 Stable tag: 3.2. 09 Stable tag: 3.2.1 10 10 License: GPLv3 or later 11 11 License URI: https://www.gnu.org/licenses/gpl-3.0-standalone.html … … 42 42 **Do the following steps, having your home page open in another browser. Or log out after each setting change if using the same browser. After each step refresh your home page TWICE** 43 43 44 1. Switch your site's theme to "Twenty Nineteen" (or one of the other "Twenty..." Themes). If it then works, you have a moody theme44 1. Switch your site's theme to "Twenty Twenty" (or one of the other "Twenty..." Themes). If it then works, you have a moody theme 45 45 2. If still broken, go to the WordPress Plugins page and disable all Plugins (except WP Roids, obviously). If WP Roids starts to work, we have a plugin conflit 46 46 3. Reactivate each plugin one by one and refresh your home page each time time until it breaks … … 202 202 == Upgrade Notice == 203 203 204 = v3.2.1 = 205 206 Logic condition regarding DONOTCACHEPAGE tweaked 207 204 208 = v3.2.0 = 205 209 -
wp-roids/trunk/wp-roids.php
r2166349 r2441989 3 3 Plugin Name: WP Roids 4 4 Description: Fast AF Caching for WordPress! 5 Version: 3.2. 05 Version: 3.2.1 6 6 Author: Philip K. Meadows 7 7 Author URI: https://philmeadows.com … … 712 712 && ! post_password_required() 713 713 && ( is_singular() || is_archive() ) 714 && ( defined( 'DONOTCACHEPAGE' ) !== TRUE && intval( DONOTCACHEPAGE ) !== 1)714 && ( defined( 'DONOTCACHEPAGE' ) === FALSE || ( defined( 'DONOTCACHEPAGE' ) === TRUE && intval( DONOTCACHEPAGE ) !== 1 ) ) 715 715 && ! is_404() 716 716 && get_post_status( $post->ID ) === 'publish' … … 2312 2312 $ignores = array( 2313 2313 $this->pluginName, 2314 //'Wordfence Security', 2314 2315 ); 2315 2316 foreach( $allPlugins as $pluginFile => $pluginInfo )
Note: See TracChangeset
for help on using the changeset viewer.