universal image caching and automatic cache directories maintenance
parent
7a5d9b95c4
commit
3c696512fc
@ -1,9 +1,15 @@
|
|||||||
<?php
|
<?php
|
||||||
set_include_path(get_include_path() . PATH_SEPARATOR .
|
set_include_path(get_include_path() . PATH_SEPARATOR .
|
||||||
dirname(__FILE__) . "/include");
|
dirname(__FILE__) . "/include");
|
||||||
|
|
||||||
require_once "config.php";
|
require_once "config.php";
|
||||||
require_once "lib/simplepie/simplepie.inc";
|
|
||||||
|
|
||||||
SimplePie_Misc::display_cached_file($_GET['i'], SIMPLEPIE_CACHE_DIR, 'spi');
|
$filename = CACHE_DIR . '/images/' . sha1($_GET['url']) . '.png';
|
||||||
|
|
||||||
|
if (file_exists($filename)) {
|
||||||
|
header("Content-type: image/png");
|
||||||
|
echo file_get_contents($filename);
|
||||||
|
} else {
|
||||||
|
header("Location: " . $_GET['url']);
|
||||||
|
}
|
||||||
?>
|
?>
|
||||||
|
@ -1,6 +1,19 @@
|
|||||||
<?php
|
<?php
|
||||||
require_once "../config.php";
|
set_include_path(get_include_path() . PATH_SEPARATOR .
|
||||||
require_once "../lib/simplepie/simplepie.inc";
|
dirname(__FILE__) . PATH_SEPARATOR .
|
||||||
|
dirname(dirname(__FILE__)) . PATH_SEPARATOR .
|
||||||
|
dirname(dirname(__FILE__)) . "/include" );
|
||||||
|
|
||||||
SimplePie_Misc::display_cached_file($_GET['i'], '../'.SIMPLEPIE_CACHE_DIR, 'spi');
|
require_once "config.php";
|
||||||
|
|
||||||
|
chdir('..');
|
||||||
|
|
||||||
|
$filename = CACHE_DIR . '/images/' . sha1($_GET['url']) . '.png';
|
||||||
|
|
||||||
|
if (file_exists($filename)) {
|
||||||
|
header("Content-type: image/png");
|
||||||
|
echo file_get_contents($filename);
|
||||||
|
} else {
|
||||||
|
header("Location: " . $_GET['url']);
|
||||||
|
}
|
||||||
?>
|
?>
|
||||||
|
Loading…
Reference in New Issue