2007-08-26 03:32:10 +00:00
|
|
|
<?php
|
2011-12-26 09:11:08 +00:00
|
|
|
set_include_path(get_include_path() . PATH_SEPARATOR .
|
2011-12-15 14:19:10 +00:00
|
|
|
dirname(__FILE__) . "/include");
|
2011-12-11 19:59:25 +00:00
|
|
|
|
2007-08-26 04:00:30 +00:00
|
|
|
require_once "config.php";
|
2007-08-26 03:32:10 +00:00
|
|
|
|
2011-12-26 09:11:08 +00:00
|
|
|
$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']);
|
|
|
|
}
|
2007-08-26 03:32:10 +00:00
|
|
|
?>
|