This repository has been archived on 2020-08-21. You can view files and clone it, but cannot push or open issues or pull requests.
musik/htdocs/dl.php

20 lines
621 B
PHP
Raw Normal View History

2012-02-27 16:59:03 +00:00
<?php
define("MAIN_DIR", __dir__."/..");
if (!empty($_GET["f"]) && is_file(MAIN_DIR."/content/".$_GET["f"]))
{
$filename = MAIN_DIR."/content/".$_GET["f"];
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header("Content-Disposition: attachment; filename=\"".$_GET["f"]."\"");
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . filesize($filename));
readfile($filename);
exit;
}
else
die ("Fichier introuvable");
?>