I'm forcing a download on links using this code from the PHP.net site:

if (file_exists($file)) {
    header('Content-Description: File Transfer');
    header('Content-Type: application/octet-stream');
    header('Content-Disposition: attachment; filename='.basename($file));
    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($file));
    ob_clean();
    flush();
    readfile($file);
    exit;
}

I put this code in a file called 'download.php', and call it from a page (<a href="download.php?file=abc.doc">Click</a>).

It works fine on all browsers, but on Safari the window it opens ('download.php') stays open during and after the download/open process. In other browsers it disappears immediately. Has anyone else come across this problem, and if so are there any suggestions as to how to solve it?

link|improve this question

67% accept rate
feedback

1 Answer

up vote 0 down vote accepted

I tried this and it seems to be working equally in all browsers. Try this code, considering that Safari and IE need of more characters as headers to be sent:

#$file = 'load.php';
header('Content-Description: File Transfer');
    header('Content-Type: application/octet-stream');
    header('Content-Disposition: attachment; filename='.basename($file));
    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($file));
    ob_clean();

for($i = 0; $i < 40000; $i++) {
    echo ' '; // extra spaces
}
flush();
usleep(50000);
exit;
link|improve this answer
Thanks for your answer, I tried the code but a) it now makes the file unreadable (trying with a .doc file); b) the blank window holding download.php still remains open in Safari. – Greg Thomas Apr 15 '11 at 16:17
@Greg, could you please provide the entire code (also where $file is declared) and the tries you have done? – Jeffrey Apr 15 '11 at 16:21
@Greg, delete that comment and update your question :) – Jeffrey Apr 15 '11 at 17:14
Ha, thanks for your suggestion. In the process of copying the code just now I realised what the problem was. I'd put target="_blank" in the anchor tag that called download.php. I've removed it now and it works fine. Thanks for your help. – Greg Thomas Apr 15 '11 at 17:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.