Tagged Questions
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?
2
votes
1answer
67 views
Django WSGI list enabled modules
I am using Django on Apache with mod_wsgi. I would like to use X-Sendfile for sending files, but with fallback when the X-Sendfile is not available.
Is there any way to list loaded Apache modules or ...
1
vote
1answer
326 views
Rails/Dragonfly/Apache - Rack::Cache - how to use X-Sendfile?
I'm using Dragonfly to serve processed images for my Rails app. Dragonfly relies on Rack::Cache for future visits to those processed images, so that Dragonfly won't have to process those images again ...
1
vote
3answers
117 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 ...
1
vote
1answer
383 views
Saving animated GIFs using PIL (image saved does not animate)
I have Apache2 + PIL + Django + X-sendfile. My problem is that when I save an animated GIF, it won't "animate" when I output through the browser.
Here is my code to display the image located outside ...
0
votes
0answers
56 views
Install apache module X-Sendfile on MAMP
How can I install X-Sendfile apache module so that MAMP can use it?
I have followed these instructions to install X-Sendfile, but it didn't work (it seems like it just installed it for the default ...
0
votes
1answer
50 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
1answer
75 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
120 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
1answer
846 views
Problem downloading large files with Rails, Nginx (with x-accel-redirect) and Apache(x-sendfile)
We have a big problem with downloads when the size is over than 1gb.
We are using Rails 2.3.5, passenger 2.2.9 on Amazon EC2 2gb with 2gb of Ram and Fedora 10.
Files are stored on /mnt/files, ...