Plugin Directory

Changeset 1553194


Ignore:
Timestamp:
12/13/2016 12:59:17 AM (9 years ago)
Author:
GatorDog
Message:

do not delete object cache with install

Location:
gator-cache
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • gator-cache/tags/2.1.4/readme.txt

    r1552134 r1553194  
    5858* Verify compatiblity with WordPress 4.7
    5959* Use ABSPATH for installation directory when installed in document root
    60 == Changelog ==
    6160= 2.1.3 =
    6261* New feature - refresh the current page in the cache
  • gator-cache/trunk/gator-cache.php

    r1552133 r1553194  
    22/**
    33 * @package Gator Cache
    4  * @version 2.1.4
     4 * @version 2.1.5
    55 */
    66/*
     
    1212Text Domain: gator-cache
    1313Domain Path: /lang
    14 Version: 2.1.4
     14Version: 2.1.5
    1515*/
    1616class WpGatorCache
     
    4848    protected static $multiSiteData;
    4949    const PREFIX = 'gtr_cache';
    50     const VERSION = '2.1.4';
     50    const VERSION = '2.1.5';
    5151    const JP_MOBILE_MOD = 'minileven'; // JetPack mobile module slug
    5252    const SUPPORT_LINK = 'https://wordpress.org/support/plugin/gator-cache';
  • gator-cache/trunk/lib/GatorCachePlugin.php

    r1552133 r1553194  
    293293    protected function copyAdvCache($copy = true)
    294294    {
    295         // get rid of object cache for now, its caches tons of transients
    296         if (is_file($cacheFile = WP_CONTENT_DIR . DIRECTORY_SEPARATOR . 'object-cache.php')) {
     295        // @depricated get rid of object cache for now, its caches tons of transients, not necessary any longer since it's not installed anymore
     296        /*if (is_file($cacheFile = WP_CONTENT_DIR . DIRECTORY_SEPARATOR . 'object-cache.php')) {
    297297            @unlink($cacheFile);
    298         }
     298        }*/
    299299        // @depricated allow the object cache file to be edited, just check existance
    300300        /*$sourceFile = $this->basePath . 'lib' . DIRECTORY_SEPARATOR . 'object-cache.php';
  • gator-cache/trunk/readme.txt

    r1552612 r1553194  
    5555
    5656== Changelog ==
     57= 2.1.5 =
     58* Redis Object Cache plugin compatiblity, fix issue with object-cache deletion.
    5759= 2.1.4 =
    5860* Verify compatiblity with WordPress 4.7
Note: See TracChangeset for help on using the changeset viewer.