I have been strongly recommended to use XSendfile since we are serving quite large files from our server. The server is running Cpanel. Previously we were using a straight force-download script, which also did not work well in some browsers. Hoping to kill two birds with one stone with XSendfile.

OK so, our host has enabled Xsendfile on our server. I wrote a quick test script:

$file = "/home/deli/central/testfile.doc";
header("X-Sendfile: $file");
header("Content-type: application/octet-stream");
header('Content-Disposition: attachment; filename="' . basename($file) . '"');
exit;

When I run this, I get the download prompt. But the file that is sent is always 0kb.

A bit of research, seems you need to set up various things in either the apache config file, or an htaccess file. I was also told that it is not a good idea to add it to the apache config, else it may get overwritten on an update. I would rather do it in htaccess ayway, since I don't have direct access to the apache config and I would rather have the control that doing it with htaccess should offer.

IF I can get it to work, of course.

So, I've added the following to an htaccess file:

XSendFile on XSendFilePath /home/deli/central XSendFileAllowAbove On

(The relative path from the script to the central file directory is ../../deli/central)

If I add these lines to the htaccess, and put it in the public_html directory (same directory as the test script), when I then run the test script I get a 500 error. Quick look at the error logs shows:

/home/north/public_html/.htaccess: XSendFilePath not allowed here

Could anyone enlighten me as to anything I might be doing wrong?

ps - I just read that it is much more efficient to do it in the apache config, so the server is not having to crawl through and load all htaccess files. Don't know if this is true or not.

Help is very much appreciated, this is a bit of a showstopper on the project :)

ps I forgot to mention - if I put in a straight force-download into the script, using the same $file path, the file downloads just fine. So the path would seem to be correct.

link|improve this question

44% accept rate
feedback

1 Answer

If you are getting 0 bytes it could be output compression needs disabled,see here for more. For the XSendFilePath not allowed here error that is a syntax problem with your .htaccess. Check it manually if you can to ensure it is in the right place per the documentation.

link|improve this answer
Hi thanks for answering. Ok I have asked our server admin to add the following to the apache config file - XSendFile On XSendFileAllowAbove On - they say they have done this, but I am still receiving zero byte files no matter what I try. I also try adding those 2 lines to the root .htaccess file. In that file I have the following - Options -Indexes ErrorDocument 404 /index.html ErrorDocument 403 /index.html XSendFile On XSendFileAllowAbove On – Edward Williams Jan 8 at 10:23
..ps also, I have tried using XSendFilePath in the .htaccess but this also gives me a 500 error. – Edward Williams Jan 8 at 10:35
Hi - no need for further help on this one it is now sorted out. Thanks for your help. – Edward Williams Jan 9 at 5:01
feedback

Your Answer

 
or
required, but never shown

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