I am trying to download a zip file from /tmp folder in Ubuntu. However when I run the Php code it shows garbage text on the browser instead of showing a download box. I tried with a simple text file and instead of showing me a download dialog box it printed its contents on the browser. Why this force-download isn't working. Below is the code.

if (file_exists($dir.$filename)) {
            header("Content-type: application/force-download");
            header("Content-Transfer-Encoding: Binary");
            header("Content-length: ".filesize($dir.$filename));
            header('Content-disposition: attachment; filename='.basename($dir.$filename));
            readfile($dir.$filename);
            exit(0);
        }

    `    
link|improve this question

27% accept rate
feedback

1 Answer

Well, given any browser a MIME type "application/force-download" the browser won't know what to do with it.

Since it is a zip file, the MIME type should be "application/octet-stream" or "application/zip".

if (file_exists($dir . $filename)) {
        header("Content-type: application/zip");
        header("Content-Transfer-Encoding: Binary");
        header("Content-length: " . filesize($dir . $filename));
        header('Content-disposition: attachment; filename=' . basename($dir . $filename));
        readfile($dir . $filename);
        exit(0);
    }
link|improve this answer
Thanks! But the screen still shows garbage output. – Shehroz Dec 15 '11 at 9:20
1  
Are you echoing anything to the browser prior to streaming the file (eg. whitespace)? – Mark Baker Dec 15 '11 at 9:51
You are absolutely correct @Mark – Shehroz Dec 16 '11 at 20:56
feedback

Your Answer

 
or
required, but never shown

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