I have the following function to force download a file:

static public function download($file, $options=array()) {
    $content = (isset($options['content'])) ? $options['content'] : '';
    $contentType = (isset($options['contentType'])) ? $options['contentType'] : '';
    header('Cache-Control: public');
    header('Content-Description: File Transfer');
    header('Content-Disposition: attachment; filename='.File::filename($file));
    header('Content-Type: '.$contentType);
    header('Content-Transfer-Encoding: binary');
    if ($content!='') {
        echo $content;
    } else {
        readfile($file);
    }
}

i send a PDF file and contentType = "application/pdf". the problem is that when i try to open the downloaded PDF file it says "There was an error opening this document. The file may be corrupt". Is weird because i can open the original file and they look exactly the same (filename, size, etc)

link|improve this question

Is there any output before this is ran? Can you put exit at the end to ensure no other output is sent? – alex Jan 23 '11 at 23:18
thanks alex, that was it! i was echoing some stuff and that was the problem... if you want you can post you comment as an answer so i can vote it as the selected one – leanyo martinet Jan 23 '11 at 23:23
Done, and no worries! – alex Jan 23 '11 at 23:28
feedback

1 Answer

up vote 1 down vote accepted

Ensure there is no output before this function is ran, and for good measure, use the exit construct at the end of this function :)

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.