diff --git a/image.php b/image.php index 36da375aa..60f2cc839 100644 --- a/image.php +++ b/image.php @@ -30,7 +30,16 @@ header("Content-type: image/png"); $stamp = gmdate("D, d M Y H:i:s", filemtime($filename)). " GMT"; header("Last-Modified: $stamp", true); - echo file_get_contents($filename); + + $fp = fopen($filename, "r"); + + if ($fp) { + while ($data = fread($fp, 32768)) { + print $data; + } + fclose($fp); + } + } else { header($_SERVER["SERVER_PROTOCOL"]." 404 Not Found"); echo "File not found.";