I have a script that takes a key from $_GET['key'] , looks up the location in a database and uses the readfile together with some headers to present a download for the use. This works in Firefox but not IE8, haven't been able to test it on another IE. I get the following error in IE: "Internet Explorer cannot download download.php from www.example.com". As if it is trying to download the PHP script.


$the_query = "SELECT * FROM `files` WHERE `user_id`=" . $_SESSION['user_id'] . " AND `key`='" . $key . "'";

$result = mysql_query($the_query);
$row = mysql_fetch_array($result);

$file = '/var/www/vhosts/www.example.com/httpsdocs/uploads/' . $row['id'] . '/' . $row['file'];

header("Content-type: application/octet-stream");
header("Content-length: ".filesize($file));
header('Content-Description: File Transfer');
header("Cache-control: private");
header('Content-Disposition: attachment; filename=' . rawurlencode(basename($file)));
readfile($file);
link|improve this question

3  
take a look at SQL injection and mysql_real_escape_string. This piece of code is vulnerable. – erenon Aug 2 '09 at 13:46
Oh lord yes please use mysql_real_escape_string – AaronLS Aug 2 '09 at 13:47
Don't know much about this, but it may have something to do with the file extension in $file – AaronLS Aug 2 '09 at 13:50
If you mean on the $key variable then yes I am using it already, just not in the code above. – Swanny Aug 2 '09 at 14:09
feedback

4 Answers

To solve the error : "Internet Explorer cannot download download.php from www.example.com", Add these headers to your script:

header("Pragma: "); header("Cache-Control: ");

The code will remove the Cache-Control from headers which makes the download problem.

It works fine for us.

:)

link|improve this answer
Thanks a Million for saving my life from Alien Bugs coming from Planet mars... I never knew what I can do but your this armor of yours helped me in killing this VERY VERY BIG BUG... Bug is dead... YAY!!.. Thanks :-) – effkay Nov 2 '11 at 16:22
feedback
up vote 3 down vote accepted

Managed to get this working by using the first example from php.net

http://us3.php.net/manual/en/function.readfile.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();
flush();
readfile($file);
exit;

link|improve this answer
feedback

Replace this:
header("Content-type: application/octet-stream");
with this:
header("Content-Type: application/force-download");

According to this post, IE doesn't normally listen to your headers, and instead looks for itself what you are sending.

link|improve this answer
I already tried this before, same error unfortunately, thanks. – Swanny Aug 2 '09 at 14:10
1  
application/octet-stream is the official MIME media type for data that is intended to be downloaded (see RFC 2046). – Gumbo Aug 2 '09 at 14:13
I'm wondering how people know all those RFCs? – WTP'-- Aug 2 '09 at 14:17
feedback

Just a hint, if someone (like me) is facing problems with directly entering a filedownload into the address bar using a secured https-request. There is a IE bug that is causing this download to fail:

http://support.microsoft.com/kb/323308/en-us

Only workaround seems to be setting the cache-headers according to the article.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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