Home
last modified time | relevance | path

Searched refs:cache_dir (Results 1 – 5 of 5) sorted by relevance

/plugin/memcache/classes/
H A Dmemcache_fakecache.class.php4 protected static $cache_dir, $ttl_dir;
23 @unlink(static::$cache_dir.$file);
31 static::$cache_dir = $conf['tmpdir'].'/cachewrapper/';
33 if (!file_exists(static::$cache_dir)) mkdir(static::$cache_dir);
34 …elseif (!is_dir(static::$cache_dir)) trigger_error("The cache directory '".static::$cache_dir."' i…
47 …if ($result = (!file_exists(static::$cache_dir.static::normalize_key($key)) && @file_put_contents(…
65 return file_exists(static::$cache_dir.static::normalize_key($key));
71 return @unlink(static::$cache_dir.static::normalize_key($key));
79 …&& ($cnt = file_get_contents(static::$cache_dir.static::normalize_key($key))) !== false // file c…
90 $dh = opendir(static::$cache_dir);
[all …]
/plugin/mantis/lib/
H A Dclass.wsdlcache.php33 var $cache_dir; variable in nusoap_wsdlcache
43 * @param string $cache_dir directory for cache-files
47 function nusoap_wsdlcache($cache_dir='.', $cache_lifetime=0) { argument
49 $this->cache_dir = $cache_dir != '' ? $cache_dir : '.';
61 return $this->cache_dir.'/wsdlcache-' . md5($wsdl);
/plugin/rssticker/
H A DlastRSS.php65 if ($this->cache_dir != '') {
66 $cache_file = $this->cache_dir . '/rsscache_' . md5($rss_url);
83 $dh=opendir($this->cache_dir);
86 if (file_exists($this->cache_dir."/".$file)) {
87 if ((fileatime($this->cache_dir."/".$file)+604800) <= time()) {
88 unlink ($this->cache_dir."/".$file);
H A Dbridge.php18 $rss->cache_dir = 'cache'; //path to cache directory on your server from this script. Chmod 777!
/plugin/statistics/inc/
H A DBrowscap.php208 * @param string $cache_dir
211 public function __construct($cache_dir) argument
216 if (!isset($cache_dir)) {
222 $old_cache_dir = $cache_dir;
223 $cache_dir = realpath($cache_dir);
225 if (false === $cache_dir) {
232 if (substr($cache_dir, -4) === '.php') {
233 $this->cacheFilename = basename($cache_dir);
234 $this->cacheDir = dirname($cache_dir);
[all...]