Plugin Directory

Changeset 990088


Ignore:
Timestamp:
09/15/2014 11:16:54 AM (11 years ago)
Author:
baseapp
Message:

update

Location:
wpbase-cache/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wpbase-cache/trunk/trunk/wpbase-cache.php

    r989864 r990088  
    44Plugin URI: https://github.com/baseapp/wpbase-cache
    55Description: A wordpress plugin for using all caches on varnish, nginx, php-fpm stack with php-apc. This plugin includes db-cache-reloaded-fix for dbcache.
    6 Version: 1.0.2
     6Version: 1.0.3
    77Author: Tarun Bansal
    88Author URI: http://blog.wpoven.com
     
    2828define('WPBASE_CACHE_DIR', WP_PLUGIN_DIR.'/wpbase-cache');
    2929define('WPBASE_CACHE_INC_DIR', WP_PLUGIN_DIR.'/wpbase-cache/inc');
    30 
     30$path = dirname(dirname(dirname(__FILE__)));
     31if(is_file($path.'/db.php')){
     32    rename($path.'/db.php',$path.'/db_old.php');
     33}
    3134class WPBase_Cache {
    3235
  • wpbase-cache/trunk/wpbase-cache.php

    r989864 r990088  
    44Plugin URI: https://github.com/baseapp/wpbase-cache
    55Description: A wordpress plugin for using all caches on varnish, nginx, php-fpm stack with php-apc. This plugin includes db-cache-reloaded-fix for dbcache.
    6 Version: 1.0.2
     6Version: 1.0.3
    77Author: Tarun Bansal
    88Author URI: http://blog.wpoven.com
     
    2828define('WPBASE_CACHE_DIR', WP_PLUGIN_DIR.'/wpbase-cache');
    2929define('WPBASE_CACHE_INC_DIR', WP_PLUGIN_DIR.'/wpbase-cache/inc');
    30 
     30$path = dirname(dirname(dirname(__FILE__)));
     31if(is_file($path.'/db.php')){
     32    rename($path.'/db.php',$path.'/db_old.php');
     33}
    3134class WPBase_Cache {
    3235
Note: See TracChangeset for help on using the changeset viewer.