Plugin Directory

Changeset 2441989


Ignore:
Timestamp:
12/18/2020 04:37:08 AM (5 years ago)
Author:
PhilMeadows
Message:

UPDATE: tweak to DONOTCACHEPAGE var logic

Location:
wp-roids/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wp-roids/trunk/CHANGELOG.md

    r2166349 r2441989  
     1= v3.2.1 =
     2
     3- **Improved:** Logic condition regarding DONOTCACHEPAGE tweaked
     4
    15= v3.2.0 =
    26
  • wp-roids/trunk/readme.txt

    r2166349 r2441989  
    55Tags: cache,caching,minify,page speed,optimize,performance,compression
    66Requires at least: 4.2
    7 Tested up to: 5.2.3
     7Tested up to: 5.6
    88Requires PHP: 5.4.0
    9 Stable tag: 3.2.0
     9Stable tag: 3.2.1
    1010License: GPLv3 or later
    1111License URI: https://www.gnu.org/licenses/gpl-3.0-standalone.html
     
    4242**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**
    4343
    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 theme
     441. Switch your site's theme to "Twenty Twenty" (or one of the other "Twenty..." Themes). If it then works, you have a moody theme
    45452. 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
    46463. Reactivate each plugin one by one and refresh your home page each time time until it breaks
     
    202202== Upgrade Notice ==
    203203
     204= v3.2.1 =
     205
     206Logic condition regarding DONOTCACHEPAGE tweaked
     207
    204208= v3.2.0 =
    205209
  • wp-roids/trunk/wp-roids.php

    r2166349 r2441989  
    33Plugin Name: WP Roids
    44Description: Fast AF Caching for WordPress!
    5 Version: 3.2.0
     5Version: 3.2.1
    66Author: Philip K. Meadows
    77Author URI: https://philmeadows.com
     
    712712                    && ! post_password_required()
    713713                    && ( is_singular() || is_archive() )
    714                     && ( defined( 'DONOTCACHEPAGE' ) !== TRUE && intval( DONOTCACHEPAGE ) !== 1 )
     714                    && ( defined( 'DONOTCACHEPAGE' ) === FALSE || ( defined( 'DONOTCACHEPAGE' ) === TRUE && intval( DONOTCACHEPAGE ) !== 1 ) )
    715715                    && ! is_404()
    716716                    && get_post_status( $post->ID ) === 'publish'
     
    23122312                                    $ignores = array(
    23132313                                        $this->pluginName,
     2314                                        //'Wordfence Security',
    23142315                                    );
    23152316                                    foreach( $allPlugins as $pluginFile => $pluginInfo )
Note: See TracChangeset for help on using the changeset viewer.