Source for file dl.php
Documentation is available at dl.php
* @author Simon Georget <simon@linea21.com>
* @license http://opensource.org/licenses/gpl-3.0.html
include_once('../config/define.php');
$file = str_replace('//', '/', SITE_PATH . '/' . $_REQUEST['file']);
$m = 'application/octet-stream';
header('Content-Description: File Transfer');
header('Content-Transfer-Encoding: binary');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
|