non-standard HTTP header supported by Apache to offload the process of serving large static files from dynamic scripts (eg: PHP, Python, Perl) after they have performed the necessary authorization or restriction logic.

learn more… | top users | synonyms

1
vote
0answers
27 views

mpeg files behind capability check won't play in Moodle

I have a problem with embedded files in moodle. The files aren't publicly aviable and are served using x-sendfile like this: if(has_capacity(...)) { sendfile(...); } It works fine for files in avi ...
0
votes
0answers
12 views

apache transfer completion notification

I'm looking for a way to obtain a reliable notification from apache that a file download has completed. It could be a log entry, a lockfile, really anything usable is good enough, except it must not ...
0
votes
0answers
26 views

X-SendFile - detect if XSendFilePath is set

I just started using the XSendFile apache module to serve files. Except for the fact that I cannot know when a download is complete, I guess it's pretty good... One problem though, I found out that ...
0
votes
0answers
24 views

Cant upload the same file concurrently using x-sendfile and apache2

I have Apache 2 with Worker MPM in Debian with mod_xsendfile. Im serving videos with sizes from 50MB to 500MB, but apache only sends one file at a time. If in 2 browser tabs the same video is opened, ...
1
vote
1answer
140 views

PHP file download with mod-xsendfile does not download entire file

I am having problem serving downloads from our website. Large files just won't download in full. Download will stop somewhere in between... Example this file (size cca 172MB) won't download in full ...
0
votes
1answer
91 views

How to install mod_xsendfile on mappstack

FINAL UPDATE: Bitnami will include mod_xsendfile to the MAPP stack as of the next release planned for somewhere around April 8, 2013. I have tryed compiling and installing mod_xsendfile on my ...
0
votes
0answers
52 views

Alternative to x-sendfile in heroku to django?

I want to serve static files to logged users in my django app hosted in Heroku, but heroku doesn't support x-sendfile. How's the best approach? In stackoverflow, there's this link Alternative to ...
0
votes
0answers
24 views

Is it possible to use x-send with heroku?

X-send is good to send on-demand static files to authenticated users. Is it possible to use x-send in heroku?
1
vote
1answer
157 views

Why does XSendfile emit intermittent garbled responses when used with Symfony Components BinaryFileResponse class?

Background Part of my application's responsibility is handling requests for static resources (CSS, JavaScript, images) in a controlled manner. Based on some application logic, it will return one ...
0
votes
0answers
229 views

Nginx + passenger + send_file (with X-Accel-Redirect) eats memory

So I've been playing around with sending large files from Rails and ended up setting up this conf for the nginx (showing relevant parts): server { listen 80; server_name myapp.ru *.myapp.ru; ...
0
votes
0answers
158 views

How to limit download bandwidth with Apache and mod_xsendfile? [closed]

I have a web server with Apache/2.4.3 and mod_xsendfile. I would like to limit the download speed of each file I send with sendfile. is it possible?
0
votes
1answer
82 views

how to protect a send_file action with cancan

I can't seem to approve authorization for the web_videos_display action. I can make it work by using the skip_authorize_resource but then any user can access the URL for the file by knowing the :id. I ...
0
votes
0answers
96 views

Disable x-sendfile server cache?

Im using mod xsendfile in my website but sometimes it downloads another file. Changing browsers / computres doesn't help. Only after a few hours it works out. My code: <?php $filename=.... ...
0
votes
1answer
188 views

xsendfile won't work with mod_rewrite

I'm trying to send file from a rewritten URL. Inside the .htaccess file I have: RewriteRule ^foo$ foo.php [L] In foo.php: header("x-sendfile: ".$_SERVER["DOCUMENT_ROOT"]."/filesdir/test.txt"); ...
0
votes
1answer
204 views

Python urllib2 not obtaining full response (PDF)

I am trying to download a PDF by hitting a URL. Say my URL looks like this: http://foo.bar/this/downloads/pdf If I hit the URL directly, the browser downloads the PDF, with no problem. However, if I ...
0
votes
1answer
181 views

Content-type problems with Django under Apache, with static HTML + CSS files?

I am trying to serve static files (HTML + CSS) under Django. (Later on, I will password protect them). However, I am getting the wrong content-type. HTML files are downloaded, not displayed. My ...
3
votes
1answer
325 views

Downloading large(ish) zip served with PHP gets corrupted for people with a slow connection

I'm a novice, so I'll try and do my best to explain a problem I'm having. I apologize in advance if there's something I left out or is unclear. I'm serving an 81MB zip file outside my root directory ...
0
votes
1answer
68 views

x_sendfile does not load

I'm trying to install x_sendfile in apache web server on a Mac OS X Server. Everything seems fine with the installation and the httpd.conf is configured with "LoadModule xsendfile_module ...
1
vote
4answers
668 views

PHP - How to find out if X-Sendfile is available and installed?

Basically, I would like to send a header X-Sendfile to the browser to send a file, but I don't want to call this if the X-Sendfile is not available or installed on the server. How can I check for ...
0
votes
0answers
95 views

I need advice on implementing X-Sendfile and X-Accel-Redirect as a native HttpModule for IIS

I'm thinking of implementing X-Sendfile and X-Accel-Redirect as a native HttpModule for IIS by checking for the relevant header and calling SetPhysicalPath in the OnMapPath method when appropriate. ...
1
vote
1answer
252 views

How to solve the memory-leak with send_file (or send_data) on Heroku?

I have a Rails 3 app that needs to generate an image and send the data to the browser. The app must be deployed on Heroku. However, Heroku only supports streaming through Mongrel which holds on to ...
0
votes
0answers
187 views

Mod_XSendFile On a Mac

I've installed xsendfile on my mac and it is located in the apache modules. I've attempted to enable it via my htaccess file but I continually get an error. When I try to get a list of modules on my ...
3
votes
0answers
194 views

fatal error: 'apr.h' file not found when installing x-sendfile mac os x mountain lion server

When I upgraded my Lion Server to Mountain Lion, it seems that it removed my mod_xsendfile from apache. I followed the instructions from this web site, but got stuck with a "No such file or ...
2
votes
1answer
369 views

X-Sendfile error, file not found

I'm using apache2 webserver and I have installed mod_xsendfile I have something like: header('Content-type: application/zip'); header('Content-Disposition: ...
3
votes
1answer
189 views

What's The Deal With X-SendFile?

In asking around and doing some research, it seems like many people are really pushing X-Sendfile as the preferred method of serving large downloadable files to a browser-based client from a PHP ...
0
votes
0answers
90 views

Displaying image in browser using Django development server and Apache

I would like to serve images using Django so that they display in the browser. Questions such as Having Django serve downloadable files suggest using Apache and X-SendFile. The configuration given ...
0
votes
1answer
221 views

mp3 sent OK, but mp4 not (Django & X-Sendfile) [closed]

Apon clicking play on my web page, an mp3 file is sent from the server and in the browser see only 3 requests sent. I added to the response X-Sendfile header, and the responds arrived without it so I ...
1
vote
1answer
272 views

Downloaded filename of file using X-Sendfile

Im using X-Sendfile to send a file instead of readfile. The script processing this, is named download.php and contains this: $video_file = '/path/to/file/file.mp4'; header('X-Sendfile: ...
0
votes
1answer
176 views

Building X-Sendfile header sender to see “hidden” files

Today I got an issue, which says I should hide some files from the public. Actually these are some "user specific" files so others than the owner should not be able to see them. I didn't want to read ...
0
votes
1answer
96 views

Using X-sendfile with utf-8 files without updating my files or database

On my site we have thousands of documents that we want to serve using x-sendfile. Unfortunately, many of them have funky utf-8 characters in their titles, and, what with HTTP not supporting utf-8, ...
1
vote
1answer
321 views

send_file and file permissions

My rails application (3.0.11) accesses the file system to download files that users have put onto the file system via SMB. Unfortunately, OS X Lion Server creates files via SMB with these ...
0
votes
2answers
2k 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
725 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'); ...
1
vote
1answer
67 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.
0
votes
1answer
1k 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 ...
3
votes
2answers
2k 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 ...
0
votes
1answer
1k 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
175 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 ...
2
votes
2answers
863 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 ...
0
votes
3answers
296 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 ...
11
votes
1answer
2k 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 ...
1
vote
3answers
895 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
351 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
1k 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 ...
2
votes
1answer
126 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 ...
0
votes
1answer
800 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
545 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 ...
4
votes
2answers
2k 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 ...
0
votes
1answer
575 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 ...
2
votes
2answers
505 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 2