Files
ICEcoder/lib/download.php
2014-04-23 07:12:13 +01:00

16 lines
403 B
PHP

<?php
include("headers.php");
include("settings.php");
$file = $docRoot.$iceRoot.str_replace("../","",str_replace("|","/",$_GET['file']));
if (file_exists($file)) {
header('Content-Description: File Transfer');
header('Content-Disposition: attachment; filename='.basename($file));
header('Content-Length: '.filesize($file));
ob_clean();
flush();
readfile($file);
exit;
}
?>