I'm attempting to force a download of an image that is in a directory above my website root. The download happens ok, and the correct filename is saved. However, the end-file is not a valid image and will not open or display properly. Here's my code:

        $photograph = new ViewPhotograph($photograph_id);
        $photograph->setPhotographVars();

        $file = $photograph->getPath('small');
        $filename = '1.jpg';

        header('Content-Description: File Transfer');
        header('Content-Type: image/jpg');
        header('Content-Disposition: attachment; filename=' . $filename);
        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 question

feedback

2 Answers

up vote 1 down vote accepted

do a ob_start before calling ob_clean()

once something is outputed by using echo or similar, you can't get rid of this, except, when you start a buffer before

link|improve this answer
before the headers? – ThinkingInBits Aug 19 '10 at 12:22
Wooo... worked. Thanks! – ThinkingInBits Aug 19 '10 at 12:22
maybe at the beginning of the file, to catch all errors or outputs – xXx Aug 19 '10 at 12:29
feedback

Perhaps there's a PHP warning corrupting the stream.

Comment out the headers and see if you see a warning. If you do, fix it. (note that you shouldn't have display_errors turned on production servers).

link|improve this answer
When I comment out the headers, I receive the notice: Notice: ob_clean() [ref.outcontrol]: failed to delete buffer. No buffer to delete. in C:\xampp\htdocs\invivid\download.php on line 35 and a bunch of binary on the browser window – ThinkingInBits Aug 19 '10 at 12:18
@Thin Remove ob_ calls completely, together with flush. I don't know why you put them there. – Artefacto Aug 19 '10 at 12:25
feedback

Your Answer

 
or
required, but never shown

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