Plugin Directory

Changeset 2547636


Ignore:
Timestamp:
06/14/2021 05:56:59 PM (5 years ago)
Author:
speedien
Message:

v1.0.4

Location:
speedien
Files:
6 edited
9 copied

Legend:

Unmodified
Added
Removed
  • speedien/tags/1.0.4/advanced-cache.php

    r2547635 r2547636  
    99}
    1010
     11if(!empty($_GET['no-optimization'])) {
     12  return false;
     13}
     14
    1115if (!empty($_COOKIE)) {
    1216  if(!empty($_COOKIE['wordpress_no_cache']))
    1317  {
    14       if($_COOKIE['wordpress_no_cache'] !== 'speedien')
     18      if($_COOKIE['wordpress_no_cache'] !== 'preview')
    1519      {
    1620          $bypass_cache = 1;
     
    2731{
    2832  $query = '';
    29   $get = array_map( 'sanitize_text_field', $_GET );
    30   foreach($get as $k => $v)
     33  foreach($_GET as $k => $v)
    3134  {
     35    if($k == 's')
     36    {
     37        return false;
     38    }
    3239    if(strpos($k, 'utm') !== false)
    3340    {
  • speedien/tags/1.0.4/readme.txt

    r2547635 r2547636  
    55Tested up to: 5.7
    66Requires PHP: 5.6
    7 Stable tag: 1.0.3
     7Stable tag: 1.0.4
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    6262All paid subscriptions have access to 24x7 priority support with 1 hour response time or less
    6363
     64## Known incompatible plugins
     65
     66This plugin contains functionality that overlaps with the following plugins. It is recommended that you deactivate these plugins when using core web vitals booster.
     67
     68* Autoptimize 
     69* Breeze 
     70* Comet Cache by WP Sharks
     71* EWWW Image Optimizer
     72* Hummingbird 
     73* Imagify 
     74* JetPack 
     75* Lazy Load
     76* Litespeed Cache
     77* Nitropack 
     78* PageSpeed Ninja
     79* Perfmatters 
     80* PhastPress 
     81* SG Optimizer
     82* ShortPixel 
     83* Smush 
     84* Swift Performance
     85* Swift Performance
     86* W3 Total Cache
     87* WP Fastest Cache
     88* WP Meteor
     89* WP Optimize
     90* WP Rocket
     91* WP Super Cache
     92
    6493## 3rd Party Services Used By The Speedien Plugin
    6594
     
    108137== Changelog ==
    109138
     139= 1.0.4 - 14 Jun, 2021 =
     140- Improved javascript optimization
     141- Improved cache handling
     142- Added cache bypass mechanism using cookies or query parameters
     143
    110144= 1.0.3 - 19 Apr, 2021 =
    111145- Added support for preloading cache via Speedien console
  • speedien/tags/1.0.4/speedien.php

    r2547635 r2547636  
    77 * Text Domain:     speedien
    88 * Domain Path:     /
    9  * Version:         1.0.3
     9 * Version:         1.0.4
    1010 */
    1111
  • speedien/tags/1.0.4/speedien_cache.php

    r2547635 r2547636  
    2020
    2121    if (!isset($_SERVER['REQUEST_METHOD']) || !in_array($_SERVER['REQUEST_METHOD'], ['HEAD', 'GET'])) {
     22        $bypass_cache = 1;
     23    }
     24
     25    if(!empty($_GET['s']) || !empty($_GET['no-optimization'])) {
    2226        $bypass_cache = 1;
    2327    }
  • speedien/trunk/advanced-cache.php

    r2505608 r2547636  
    99}
    1010
     11if(!empty($_GET['no-optimization'])) {
     12  return false;
     13}
     14
    1115if (!empty($_COOKIE)) {
    1216  if(!empty($_COOKIE['wordpress_no_cache']))
    1317  {
    14       if($_COOKIE['wordpress_no_cache'] !== 'speedien')
     18      if($_COOKIE['wordpress_no_cache'] !== 'preview')
    1519      {
    1620          $bypass_cache = 1;
     
    2731{
    2832  $query = '';
    29   $get = array_map( 'sanitize_text_field', $_GET );
    30   foreach($get as $k => $v)
     33  foreach($_GET as $k => $v)
    3134  {
     35    if($k == 's')
     36    {
     37        return false;
     38    }
    3239    if(strpos($k, 'utm') !== false)
    3340    {
  • speedien/trunk/readme.txt

    r2517881 r2547636  
    55Tested up to: 5.7
    66Requires PHP: 5.6
    7 Stable tag: 1.0.3
     7Stable tag: 1.0.4
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    6262All paid subscriptions have access to 24x7 priority support with 1 hour response time or less
    6363
     64## Known incompatible plugins
     65
     66This plugin contains functionality that overlaps with the following plugins. It is recommended that you deactivate these plugins when using core web vitals booster.
     67
     68* Autoptimize 
     69* Breeze 
     70* Comet Cache by WP Sharks
     71* EWWW Image Optimizer
     72* Hummingbird 
     73* Imagify 
     74* JetPack 
     75* Lazy Load
     76* Litespeed Cache
     77* Nitropack 
     78* PageSpeed Ninja
     79* Perfmatters 
     80* PhastPress 
     81* SG Optimizer
     82* ShortPixel 
     83* Smush 
     84* Swift Performance
     85* Swift Performance
     86* W3 Total Cache
     87* WP Fastest Cache
     88* WP Meteor
     89* WP Optimize
     90* WP Rocket
     91* WP Super Cache
     92
    6493## 3rd Party Services Used By The Speedien Plugin
    6594
     
    108137== Changelog ==
    109138
     139= 1.0.4 - 14 Jun, 2021 =
     140- Improved javascript optimization
     141- Improved cache handling
     142- Added cache bypass mechanism using cookies or query parameters
     143
    110144= 1.0.3 - 19 Apr, 2021 =
    111145- Added support for preloading cache via Speedien console
  • speedien/trunk/speedien.php

    r2517881 r2547636  
    77 * Text Domain:     speedien
    88 * Domain Path:     /
    9  * Version:         1.0.3
     9 * Version:         1.0.4
    1010 */
    1111
  • speedien/trunk/speedien_cache.php

    r2517881 r2547636  
    2020
    2121    if (!isset($_SERVER['REQUEST_METHOD']) || !in_array($_SERVER['REQUEST_METHOD'], ['HEAD', 'GET'])) {
     22        $bypass_cache = 1;
     23    }
     24
     25    if(!empty($_GET['s']) || !empty($_GET['no-optimization'])) {
    2226        $bypass_cache = 1;
    2327    }
Note: See TracChangeset for help on using the changeset viewer.