I am trying to make a file downloadable in Safari.
This is my code:
<?php
$file = $_GET['file'];
header ("Content-Disposition: attachment");
header ("Content-type: application/octet-stream");
header ("Content-disposition: attachment; filename=".$file.";");
header("Content-Length: ".filesize($file));
readfile($file);
exit;
?>
It works fine in FF but in Safari I get a 0kb file.
I think I there is something wrong in the header I am sending.
What could be the error?
Try This.
Beware: Relying on
$_GET['file']without any sanitation or restrictions is very dangerous. Can be used to compromise the entire server application!