Displaying 20 results from an estimated 20000 matches similar to: "problem in downloading large file(1.1GB) using xsendfile.so"
2010 Sep 20
0
problem in downloading large file(1.1 gb) using xsendfile mo
Hi all,
I am Running Apache as frontend server to mongrel and uploaded 1.1 Gb
of file using my rails application .Now I am trying to download same 1.1
GB stream ,for that i loaded mod_xsendfile.so in apache httpd.conf file
and using send_file function downloaded this 1.1 gb of stream
successfully.but after downloading it ,again am trying to download same
1.1 gb of stream but now am getting failed
2010 Sep 27
0
problem when downloading files with xsendfile
Hii All, i loaded mod_xsendfile.so in apche , i added few line in
httpd.conf files
LoadModule xsendfile_module modules/mod_xsendfile.so
XSendFile on
XSendFileAllowAbove on
<VirtualHost * localhost:80>
ServerName src
DocumentRoot C:/InstantRails-2.0-win/rails_apps/src/public/
ProxyPass / http://localhost:3000/
ProxyPassReverse / http://localhost:3000/
</VirtualHost >
now in my
2010 Sep 22
20
problem in downloading large file with apache+mongrel
hii all,
am using apache as frontend to mongrel and loaded xsendfile
module in apache ,am looking for 1 GB of download .this is download
routine
def download
@stream = Stream.find(params[:id])
send_file(@stream.location,:filename => @stream.name,:disposition >
''attachment'',:x_sendfile => true )
and
And this is how it is processed
Processing
2006 Apr 11
0
Large file support (up and down) for Mongrel 0.13.3
I''ve just checked in changes to improve handling of massive posts and
massive downloads. Generally speaking, Mongrel has been keeping
everything in memory. (Unless you''re using DirHandler and have the
sendfile gem in place.) Now, downloads should be pretty swift even
without the sendfile gem.
HttpResponse#send_file rips out the file streaming support from
DirHandler and
2008 Sep 01
0
Apache configuration for using plugin Xsendfile
Hello
I am facing some problem in using the plugin Xsendfile(http://
john.guen.in/rdoc/x_send_file/).Here in README for setting up web
server , the author has given a link to http://celebnamer.celebworld.ws/stuff/mod_xsendfile
.But when I try to Install mod_xsend_file.c
I am getting an error
apxs:Error: Activation failed for custom /etc/apache2/httpd.conf
file..
apxs:Error: At least one
2010 Sep 23
0
how to do force apache to handle static request
Posted by Amit Tomar (amit-singh) on 23.09.2010 14:55
hii all, Am running apche as frontend to mongrel ,i added these line in
Apache''s httpd.conf file
LoadModule rewrite_module modules/mod_rewrite.so
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule
2007 Aug 07
3
XSendFile problem
I am trying to user XSendFile in my application.
I have installed the plugin and in the environment.rb included this line
XSendFile::Plugin.replace_send_file!
but it is unable to read the files.
Earlier i had used send_file but it increases the mongrel size and slows
down the application.
Any suggestions about how to make it work?
--
Posted via http://www.ruby-forum.com/.
2007 Dec 18
0
Using mod_xsendfile and x_send_file with Mongrel
Can anyone tell me how to get x_send_file working with mongrel 1.1.1
and apache 2.2? I''ve installed the mod_xsendfile apache module from
http://tn123.ath.cx/mod_xsendfile/ and it works fine serving content
from a PHP script, but I can''t get it to work with my single Mongrel
instance and ProxyPass.
I''m using the following Apache configuration:
<VirtualHost *:80>
2007 Dec 12
10
sendfile and mongrel
forgive me if this has been resolved already...
I have an app that is using sendfile to return large files to customers.
We can''t use regular Apache to handle this static content since the
files are what the customers are paying for - so it wouldn''t be cool for
anyone else to get access to them.
The issue is that the mongrel mem footprint gets bloated when the files
are
2010 Sep 23
0
how to i force apche to handle download requestrunning apach
hii all, Am running apche as frontend to mongrel ,i added these line in
Apache''s httpd.conf file
LoadModule rewrite_module modules/mod_rewrite.so
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule xsendfile_module modules/mod_xsendfile.so
XSendFile on
2008 Jan 08
4
XSendFile in development environment
Hi
I''m currently trying to use X-Sendfile to take some load off my rails
app, unfortunately in my development environment mongrel is happily
passing through the x-sendfile header, presumably for the (non-
existant) proxy to handle the header.
Is there some way to make mongrel process the x-sendfile header itself?
Thanks
jebw
2007 Nov 07
16
file access with mongrel running as windows service
i have an archive of documents (word, excel, jpeg, png, gif...)
residing on a network share that is accessed via send_file.
when running mongrel on the command line the files are properly
delivered.
with mongrel running as a service they don''t.
now normally i would think that should be fixable by configuring the
service to run under a user that can read the files....
but
2007 Feb 27
2
send_file and ZIP files
I have an application which uses send_file to send a ZIP file to the
client. This works nicely when it''s run on our development OS-X
boxes, using mongrel from script/server, but on our production
server, using mongrel behind Apache 2.2. with mod_proxy_balancer, the
client gets 1 byte delivered :-(
If I use wget -S to the URL in order to see the full headers I see
this on
2006 May 14
3
send_file and locking files after download?
Hello,
I''m working on a download service which grants users a one-time-download
access to files. The idea is to write an entry to a database table after
a successful download that "locks" the download link for the user.
After doing some quick tests with send_file I noticed that send_file
does not block until the user has downloaded the full file, but proceeds
with the
2006 Dec 21
6
Rails'' send_file, Mongrel, and *gasp* memory
I''ve had a right fun few days at work trying to figure out why our Rails
app (which isn''t under very heavy load) kept eating memory and bringing
our server to our knees. Eventually I traced it to send_file (which was
in a way a relief as it wasn''t down to my coding ;) -- every time a user
started downloading, the memory consumed by the app would jump, and
2007 Dec 18
3
Mongrel + Lighttpd
Hi guys,
I''ve been chasing a problem in my web-stack: Lighttpd -> Mongrel ->
Rails, and found a problem with the interaction of Lighttpd and Mongrel.
If a request takes more than 5 seconds, Lighty will retry it - and
then the requests / responses get mixed up in Lighty and it returns a
bad response to the client. Not good.
I''m convinced that the problem is
2006 Dec 14
1
Does send_file act differently with Mongrel than with Webrick?
Mongrel 0.3.13.3
Windows XP
Rails 1.1.6
I have a rails app that serves up mp3 files via the send_file command. We create a playlist (M3U) with URLs to the mp3s. These play just fine using Windows Media Player. However using WinAmp we get an error "error syncing to stream" when it tries to request the mp3.
After playing around I found that if I am running Rails under Webrick WinAmp
2008 Jun 17
6
x_send_file sends a 1 byte file
Hello,
sorry if creating a dupe...
I''m trying to download files to authenticated users in my app. I''ve set
up x_send_file. All seems to be correct to me, however when I try to
download any file, I get a 1-byte long file downloaded.
I am getting this already in development - so no Apache, no lighthttpd,
just a mongrel_rails start in the root of my app.
Any help/hint would be
2007 Mar 28
0
returning images from Mongrel
I''ve been able to use Mongrel''s native API to serve up files using:
response.start do |head, out|
head[''Content-Type''] = resource.content_type
out.write( resource.content )
end
This has worked well, until I attempted to serve up images.
resource.content seems to be the problem. Usually it returns the text of
the page. When resource.content returns an
2006 Dec 14
1
Does send_file act differently with Mongrel than withWebrick?
I tried the mime thing but it did not help. I didn''t think it was that because I can get the mp3 served OK hitting the URL in a browser.
I just noticed that I am getting an error in Mongrel when WinAmp make the request for the mp3 file:
BAD CLIENT (127.0.0.1): Invalid HTTP format, parsing fails.
I don''t think Mongrel has a problem with the URL itself because if a browser