I installed mod_xsendfile and it seems to have been successful; xsendfile.load appears in /etc/apache2/mods-enabled, and I've found no errors when running my test script. However, every time I run it, I get served a 0B file.

Here's my test script:

$file = 'sample.mp4';
$path = '/var/storage/media/'.$file;
header('Content-Disposition: attachment; filename="' . basename($file) . '"');
header("Content-type: application/octet-stream");
header("X-Sendfile: $path");

Obviously I have a file stored in /var/storage/media/sample.mp4, it's only 25MB, and is served perfectly fine if I do it this way:

header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($path));
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($path));
ob_clean();
flush();
readfile($path);
exit;

I also have this in the .htaccess file of both /var/storage and /var/www (the files that has all this is stored in /var/www/files/index.php):

XSendFile on
XSendFileAllowAbove on

Like I said, I get no errors, and the PHP can certianly access the file, but I must be missing something with the x-sendfile configuration... that reminds me, I notice in mods-enabled just about every mod has a .load and .conf, but xsendfile only has .load, but so do a few others, so would that have anything to do with it?

Thanks.

link|improve this question
When you say you get no errors does this mean you have tried "tail -f /var/log/apache2/errors.log" – Gerry Aug 20 '11 at 19:02
I read through it and found nothing pertaining to the file it's trying to load. Found plenty of entries about it trying to get the favicon file that I haven't created yet though. – Doug Wollison Aug 20 '11 at 19:44
Heh, yeah I get that favicon error too – Gerry Aug 20 '11 at 19:51
feedback

2 Answers

Try making header("X-Sendfile: $path"); the first header() call in the file.

Also take a look at this. Seems like a similar issue and it may give you some ideas:

X-Sendfile Error

link|improve this answer
I read through the suggestions and tried some of them (dropping the type header, switching to X-LIGHTTPD-send-file), but same problem. – Doug Wollison Aug 20 '11 at 19:43
You tried moving the X-Sendfile header to the top of the list of headers? – Gerry Aug 20 '11 at 19:52
Yup. Added and removed the other headers in various combinations, no change. Well, aside from the file name being "download" when I got rid of the Content-Disposition header. – Doug Wollison Aug 20 '11 at 20:12
Hmmm I'm stumped then, sorry. – Gerry Aug 20 '11 at 20:13
Any chance X-Sendfile isn't actually running but doesn't throw any errors? I'm not sure how to check for that. – Doug Wollison Aug 20 '11 at 20:39
show 1 more comment
feedback

Make sure you also turn on XSendFile in your Apache configuration if using Apache. If you don't do this, it will look like it works, but empty files will be served.

For example:

<Directory /var/www/>
    Options Indexes FollowSymLinks MultiViews
    XSendFile on
    AllowOverride All
    Order allow,deny
    allow from all
</Directory>
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.