Last active
August 25, 2017 02:46
-
-
Save hanigamal/5889230 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$path = '/home/someuser/products/data.tar.gz'; // the file made available for download via this PHP file | |
$mm_type="application/octet-stream"; // modify accordingly to the file type of $path, but in most cases no need to do so | |
header("Pragma: public"); | |
header("Expires: 0"); | |
header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); | |
header("Cache-Control: public"); | |
header("Content-Description: File Transfer"); | |
header("Content-Type: " . $mm_type); | |
header("Content-Length: " .(string)(filesize($path)) ); | |
header('Content-Disposition: attachment; filename="'.basename($path).'"'); | |
header("Content-Transfer-Encoding: binary\n"); | |
readfile($path); // outputs the content of the file | |
exit(); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment