I was just testing this download script below. The downloading works fine but the downloaded zip or rar archive is always corrupt and cannot be opened. I tested it on local development server as well as my hosting account.

I am just trying to learn how this works but I don't really understand it.

All help is appreciated!

Test Code:

<?php
$is_logged_in = 1;
$path_to_file = 'downloads/tes.zip';
$file_name = 'test.zip';

if ($is_logged_in == 1)
{
    header("X-Sendfile: $path_to_file");
    header("Content-Type: application/octet-stream");
    header("Content-Disposition: attachment; filename=\"$file_name\"");
    exit;
}
?>

<h1>Permission denied</h1>
<p>Please Login first!</p>
link|improve this question
Open the file in a text editor. What do you see? – Daniel A. White Mar 24 '11 at 0:40
You do not send any data, do you? – Gumbo Mar 24 '11 at 0:41
Did you install mod_xsendfile as recommended with that code? – icktoofay Mar 24 '11 at 0:42
@icktoofay, No, sorry, I guess neither of the servers has this installed. i just figured the code would brake if it wasn't installed. I received no errors - the download works fine. – usnidorg Mar 24 '11 at 0:48
feedback

2 Answers

up vote 0 down vote accepted

It mostly probable that you have something appended/prepended to the file. Try to use buffering and cleaning.

<?php
ob_start();
$is_logged_in = 1;
$path_to_file = 'downloads/tes.zip';
$file_name = 'test.zip';

if ($is_logged_in == 1)
{
    $fp = fopen($path_to_file, 'rb');

    if(is_resource($fp))
    {
            ob_clean();
            header("Content-Type: application/force-download");
            header("Content-Length: " . filesize($path_to_file));
            header("Cache-Control: max_age=0");
            header("Content-Disposition: attachment; filename=\"$file_name\"");
            header("Pragma: public");
            fpassthru($fp);
            die;
    }
} else {
    echo "<h1>Permission denied</h1>";
    echo "<p>Please Login first!</p>";
}
link|improve this answer
Is there an alternative to using mod_xsendfile. Is it possible to do this without having to install a module? – usnidorg Mar 24 '11 at 0:47
You rock! – usnidorg Mar 24 '11 at 1:04
thanks, keep it with headers as I wrote, it solves some problems with IE downloads. – Igor Mar 24 '11 at 1:08
feedback

Have you configured your webserver (Apache in particular) to load mod_xsendfile? Without that module installed, your script essentially does nothing.

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.