Tagged Questions
22
votes
8answers
2k views
Fastest Way to Serve a File Using PHP
I'm trying to put together a function that receives a file path, identifies what it is, sets the appropriate headers, and serves it just like Apache would.
The reason I am doing this is because I ...
6
votes
2answers
3k views
Using X-Sendfile with Apache/PHP
I can't seem to find much documentation on X-Sendfile or example code for PHP (there is some rails code).
Anyone used it before and would mind giving a quick snippet of code and a brief description?
3
votes
2answers
100 views
Test if X-Sendfile header is working
I am looking for a way to confirm if X-Sendfile is properly handling requests handed back to the webserver by a script (PHP). Images are being served correctly but I thought I would see the header in ...
1
vote
1answer
22 views
Is there a way to tell if x-sendfile has started?
I think the subject says it all.
I want a download to start when a page is loaded and then for the body of the page to load once the script is sure the download has commenced.
1
vote
2answers
130 views
X-SendFile on Apache2 (PHP) serving 0B file, no errors though
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, ...
1
vote
3answers
109 views
Is there any way to tell when an X-Sendfile download has completed?
In the interest of cleaning up temporary files on the webserver, I'm wondering if there's any way to tell when X-Sendfile downloads complete... maybe in a log somewhere? My understanding currently is ...
0
votes
1answer
24 views
Confilict between RewriteEngine and XSendFile
I have following PHP code
$filename = 'a56.flv';
$file = "C:/xampp/htdocs/site/flv/a56.flv";
header("Content-Type: application/force-download");
header('Content-Type: video/x-flv');
...
0
votes
0answers
21 views
Weird XSendfile permissions(?) issue - force download works ok
our host company has set up and configured XSendfile and we have tested it as working.
We have configured the following in the apache config:
XSendFile on
XSendFilePath /home/beef/shared/
If I do ...
0
votes
1answer
43 views
X-Sendfile specific configuration .htaccess questions
I already have a question open about this, I don't know the etiquette for posting again but I feel that the previous question is going down a wrong path.
I have been researching all day on the topic ...
0
votes
1answer
66 views
XSendfile not working - PHP, Apache, Cpanel
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 ...
0
votes
2answers
64 views
Protecting Downloads
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 ...
0
votes
1answer
70 views
connections dropped
I am using lighttp 1.5 on CentOS release 5.2. The site is a free stock photo site that allows users to download files. Files are around 3-6MB each. The download script is a php script that looks like ...