Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
fusioncharts-wrapper-source
:
download.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php echo " +++++ " .$_REQUEST["file"]; if(isset($_REQUEST["file"])) { // Get parameters $file = urldecode($_REQUEST["file"]); // Decode URL-encoded string /* Test whether the file name contains illegal characters such as "../" using the regular expression */ if(preg_match('/^[^.][-a-z0-9_.]+[a-z]$/i', $file)){ $filepath = "Doc_uploads/" . $file; // Process download if(file_exists($filepath)) { echo "YES......" .$filepath; //echo readfile($filepath); /*header('Content-Description: File Transfer'); header('Content-Type: application/octet-stream'); header('Content-Disposition: attachment; filename="'.basename($filepath).'"'); header('Expires: 0'); header('Cache-Control: must-revalidate'); header('Pragma: public'); header('Content-Length: ' . filesize($filepath)); flush(); // Flush system output buffer readfile($filepath); die();*/ header('Content-Description: File Transfer'); header('Content-Type: application/octet-stream'); header('Content-Disposition: attachment; filename='.basename($filepath)); 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($filepath)); ob_clean(); flush(); readfile($filepath); } else { http_response_code(404); die(); } } else { die("Invalid file name!"); } } ?>