2011-11-03 15:57:23 +01:00
|
|
|
<?php
|
2012-12-09 10:41:22 +01:00
|
|
|
set_include_path(dirname(__FILE__) . PATH_SEPARATOR .
|
2011-12-26 10:11:08 +01:00
|
|
|
dirname(dirname(__FILE__)) . PATH_SEPARATOR .
|
2012-12-09 10:41:22 +01:00
|
|
|
dirname(dirname(__FILE__)) . "/include" . PATH_SEPARATOR .
|
|
|
|
get_include_path());
|
2011-11-03 15:57:23 +01:00
|
|
|
|
2011-12-26 10:11:08 +01:00
|
|
|
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']);
|
|
|
|
}
|
2011-11-03 15:57:23 +01:00
|
|
|
?>
|