2007-08-26 05:32:10 +02:00
|
|
|
<?php
|
2011-12-26 10:11:08 +01:00
|
|
|
set_include_path(get_include_path() . PATH_SEPARATOR .
|
2011-12-15 15:19:10 +01:00
|
|
|
dirname(__FILE__) . "/include");
|
2011-12-11 20:59:25 +01:00
|
|
|
|
2007-08-26 06:00:30 +02:00
|
|
|
require_once "config.php";
|
2007-08-26 05:32:10 +02:00
|
|
|
|
2011-12-28 20:03:55 +01:00
|
|
|
$url = base64_decode($_GET['url']);
|
|
|
|
|
|
|
|
$filename = CACHE_DIR . '/images/' . sha1($url) . '.png';
|
2011-12-26 10:11:08 +01:00
|
|
|
|
|
|
|
if (file_exists($filename)) {
|
|
|
|
header("Content-type: image/png");
|
|
|
|
echo file_get_contents($filename);
|
|
|
|
} else {
|
2011-12-28 20:03:55 +01:00
|
|
|
header("Location: $url");
|
2011-12-26 10:11:08 +01:00
|
|
|
}
|
2007-08-26 05:32:10 +02:00
|
|
|
?>
|