Searched refs:cache_filename (Results 1 – 4 of 4) sorted by relevance
/plugin/photogallery/phpThumb/ |
D | phpThumb.php | 56 $nice_cachefile = str_replace(DIRECTORY_SEPARATOR, '/', $phpThumb->cache_filename); 61 $nModified = filemtime($phpThumb->cache_filename); 65 …sed cached (image/'.$phpThumb->thumbnailFormat.') file "'.$phpThumb->cache_filename.'" (Last-Modif… 72 if ($getimagesize = @getimagesize($phpThumb->cache_filename)) { 78 …$phpThumb->DebugMessage('* Would have sent data: file_get_contents('.$phpThumb->cache_filename.')'… 87 $getimagesize = @getimagesize($phpThumb->cache_filename); 99 header('ETag: "'.md5_file($phpThumb->cache_filename).'"'); 102 } elseif (preg_match('#\\.ico$#i', $phpThumb->cache_filename)) { 105 header('Content-Length: '.filesize($phpThumb->cache_filename)); 109 echo file_get_contents($phpThumb->cache_filename); [all …]
|
D | phpthumb.class.php | 259 public $cache_filename = null; variable in phpthumb 3640 if (null !== $this->cache_filename) { 3666 …$this->cache_filename = $this->config_cache_directory.DIRECTORY_SEPARATOR.rawurlencode(str_replace… 3671 $this->cache_filename = ''; 3674 $this->cache_filename .= '_new'.$broad_directory_name; 3679 $this->cache_filename .= '_raw'.$this->md5s; 3683 $this->cache_filename .= '_raw'.$broad_directory_name; 3687 $this->cache_filename .= '_src'.$broad_directory_name; 3694 $this->cache_filename .= '_offsite'; 3725 $this->cache_filename .= '_par'.strtolower(md5($ParametersString)); [all …]
|
/plugin/html2pdf/html2pdf/html2ps/ |
D | css.cache.class.php | 22 $cache_filename = $this->_getCacheFilename($url); 23 return is_readable($cache_filename); 27 $cache_filename = $this->_getCacheFilename($url); 28 $obj = unserialize(file_get_contents($cache_filename));
|
/plugin/photogallery/phpThumb/demo/ |
D | phpThumb.demo.check.php | 170 …'<div>'.htmlspecialchars($phpThumb->cache_filename ? implode(' / ', preg_split('#[/\\\\]#', $phpTh… 171 echo '<div>directory '.(is_dir(dirname($phpThumb->cache_filename)) ? 'exists' : 'does NOT exist').'… 172 phpthumb_functions::EnsureDirectoryExists(dirname($phpThumb->cache_filename)); 173 echo '<div style="background-color: '.(is_dir(dirname($phpThumb->cache_filename)) ? 'lime;">directo… 174 if ($fp = @fopen($phpThumb->cache_filename, 'wb')) { 179 $old_perms = substr(sprintf('%o', fileperms($phpThumb->cache_filename)), -4); 180 @chmod($phpThumb->cache_filename, 0644); 182 $new_perms = substr(sprintf('%o', fileperms($phpThumb->cache_filename)), -4); 185 if (@unlink($phpThumb->cache_filename)) {
|