Tagged Questions
The x-sendfile tag has no wiki summary.
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 ...
8
votes
1answer
4k views
Serving Large Files Through Nginx via Rails 2.3 Using x-sendfile
Let's say I have a Rails 2.3.2 application fronted by nginx and served by mongrel in which I need to serve a large static file through Rails (to control access to it). I want the Rails app to delegate ...
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?
5
votes
1answer
362 views
mod_xsendfile with symbolic links
I'm running into an issue using xsendfile with my Rails 3 app.
I'm using capistrano to manage deployments and in each release, there is a symbolic link to the shared/assets dir (e.g. ...
3
votes
2answers
99 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 ...
3
votes
2answers
693 views
X-Sendfile and VERY big files on Apache2
Any filesize over about 4GB is not going to work with the mod_xsendfile for Apache2 (as it sets the content length to a long).
I am willing to rewrite it to support this; however, I can find no ...
2
votes
1answer
151 views
Django - Understanding X-Sendfile
I've been doing some research regarding file downloads with access control, using Django. My goal is to completely block access to a file, except when accessed by a specific user. I've read that when ...
2
votes
1answer
62 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 ...
2
votes
1answer
395 views
Message “X-Accel-Mapping header missing” in Nginx error log
I am running a Rails 3 site on Ubuntu 8.04 with Nginx 1.0.0 and Passenger 3.0.7.
In my Nginx error.log I started seeing the message X-Accel-Mapping header missing quite a lot. Googling lead me to the ...
2
votes
2answers
602 views
mod_xsendfile for Win x64?
I'm trying to install the mod_xsendfile Apache Module on Windows (7) x64 (using Apache 2.2) -- yes I'm doomed from the get-go, I know :-). Apparently there is :
a) No Win x64 binary for ...
1
vote
1answer
21 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
1answer
274 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
2answers
129 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 ...
1
vote
1answer
269 views
rails media file stream accept byte range request through send_data or send_file method
I have the following problem. Sounds are hidden from the public folder, cause there are only certain Users who should have access to the sound files. So I made a certain method, which acts like a ...
1
vote
2answers
279 views
collective.xsendfile, ZODB blobs and UNIX file permissions
I am currently trying to configure collective.xsendfile, Apache mod_xsendfile and Plone 4.
Apparently the Apache process does not see blobstrage files on the file system because they contain ...
1
vote
1answer
369 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 ...
1
vote
1answer
587 views
MongoDB's GridFS, Rails 3, X-Sendfile, and ACL's, HOW-TO?
I have a Rails 3 project that does file upload/download, with access rights (User has many Files, and can only read/write his own files).
If I store my files on classic filesystem, I can check the ...
1
vote
2answers
154 views
upload analogue with XSendFile?
Is there some way to use something similar to x-sendfile for uploading files, e.g. saving particular stream/parameter from request to file, without putting it wholly into memory?
(In particular, with ...
1
vote
3answers
1k views
Problems with x_sendfile in Rails
I’m having some problems with John Guenin's x_sendfile (http://john.guen.in/past/2007/4/17/send_files_faster_with_xsendfile/).
When coding the download of a PDF file, I’m using the following code:
...
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
0answers
24 views
Did anyone used the XSENDFILETEMPORARY in apache2 virtual host?
Did anyone xsendfileTemporary in apache2 virtual host?
I have tried to use it in my virtual host, but it is showing the error message:
Syntax error on line 6 of ...
0
votes
0answers
44 views
jruby + tomcat and rails 3 send_file
I've been testing out our Jruby + Tomcat installation of a Rails 3 project and it was working well. I even got to fix the send_file problem of it sending out 0-byte zip files by commenting out ...
0
votes
1answer
55 views
send_file problems in Rails3 DEVELOPMENT mode
I've seen the issues here about send_file and apache/nginx and all point to this line in production.rb
config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect'
Well and good, but what about ...
0
votes
3answers
70 views
xsendfile only works from index
I'm trying to send a file to the user using xsendfile within the code igniter framework.
It is all installed correctly, my problem is that it only seems to work from the route, even though every page ...
0
votes
1answer
245 views
Downloading: Paperclip, S3, Heroku, and x_sendfile
I have what i imagine is a fairly common setup.
My rails 3 app is hosted on Heroku, and i use Paperclip to manage file uploading, of videos and images, with all files saved on Amazon S3. The model ...
0
votes
0answers
309 views
ruby on rails 3 apache 2 mod_xsendfile: Setting diffrent filename
I configured mod_sendfile for apache2. I tested it - works fine.
Now I tried to change filename for downloaded file, I used the method "filename"
e.g.
send_file ...
0
votes
1answer
202 views
Relative paths don't work in mod_xsendfile at Apache
I have problem, with mod_xsendfile. When I send to Apache header with absolute path (like /home/foo/foo.txt ) everything works fine. But when I use relative links I get strange errors in Apache's ...
0
votes
2answers
468 views
rails - x-sendfile + temporary files
Some time ago I wrote a question regarding the use of temporary files within a rails app. On thar particular case, I decided to use tempfile
This causes a problem if I also want to use the x-sendfile ...
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
821 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, ...
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 ...