Displaying 20 results from an estimated 7000 matches similar to: "restarting cluster without killing in progress file uploads"
2006 Jul 02
4
how to use upload progress?
I''m a bit confused about how to get upload progress to work with
mongrel.. I''ve installed the mongrel_upload_progress (0.1) gem, but
have no idea what to do with it.
According to the following page:
http://technoweenie.backpackit.com/pub/602283
there''s a patch (mup.diff) which seems like it patches the
mongrel_upload_progress plugin
The following blog entry makes it
2006 Dec 25
4
Definitive guide for upload progress
Hi
Is there some definitive guide for upload progress plugin ? We have in
this mailing list a lot of testimonials, bug reports, bug fixes, but
there are still people like me who cannot use it correctly.
Here is my config:
- mongrel 1.0RC and upload progress plugin 0.2.1
- a 6 mongrels cluster
- config/mongrel_upload_progress.conf:
uri "/",
:handler =>
2006 Sep 04
3
Mongrel Upload Progress 0.2 -- With Instructions and Examples
Hi Folks,
I''m sure tons of people are gonna ruin a whole drawer of their best
panties over this one.
Rick Olson worked on the mongrel_upload_progress gem, documentation and
examples and has almost everything you need to do progress tracked file
uploads using just Mongrel to handle the upload. This means that Rails
(or any other framework) isn''t blocked while the upload
2007 Jun 23
3
mongrel_upload_progress and nginx
G''day
I''m just wondering if anybody knows of a way to get mongrel_upload_progress
working with nginx? I''ve had a fair bit of a look around but havn''t been
able to come up with anything, yet.
--
- James
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2006 Sep 21
0
File uploads intermittent upon first form submission
I have Mongrel 0.3.13.4 running Rails 1.1.6 behind Apache 2.2.3 with
mod_proxy_balancer, mongrel_cluster 0.2.0 as per the documentation,
and mongrel_upload_progress 0.2, on Fedora Core 4. I''m using a
cluster of three Mongrels.
I have an existing app which allows users to upload files, and I''m
migrating it to Mongrel from Lighttpd. Uploading files via multipart
forms
2007 Feb 23
0
Mongrel::Uploads.check() not returning status
Hi,
I wrote a message earlier regarding how I wasn''t getting any feedback
from mongrel_upload_progress. After putting lots of debug messages
in the plugin, I figured out what was going on.
I had a route like this setup in routes.rb (this was the problem):
map.upload "upload/:upload_id",
:controller => "file",
:action
2007 May 18
4
No return status from mongrel upload progress (and thus no updates on the bar)
Hi all,
I''m using Boxroom (http://boxroom.rubyforge.org/) and trying to get
upload progress working. I''ve also been testing the sample code at
http://itblog.mcgeecorp.com/2007/5/15/mongrel-upload-progress-demo/.
I run a Mongrel cluster, and so am using drb (as per
http://mongrel.rubyforge.org/docs/upload_progress.html). Starting up
rails, I get lots of useful-sounding output:
2008 Jan 03
23
deployment survey
Hello Mongrels,
Building on the last messages about Fastthread, can we get a detailed
survey of the different ways people are deploying their applications?
It will help with near-future Mongrel development.
Please include the following things:
* Framework, if any (Camping, Merb, Rails, Nitro, Ramaze, IOWA, Rack...)
* Mongrel version
* Mongrel handlers used (rails, dirhandler, camping,
2006 Nov 28
34
Uploading Large (100mb+) files
I have an Apache 2.2.3 (mod_proxy_balancer) frontend server that does
not have mongrel installed. It does proxy requests to several other
mongrel-only servers (each running 2 mongrel processes). Each mongrel
node has the same rails code-base and it''s working perfectly.
However, my question is when I add an upload file form... where is it
going to physically put that file? I mean since
2007 Mar 23
1
upload progress bar don''t work...please help
Hello,
I''m trying to install the upload_progress gem and i can''t see the upload
progress status.
My config is :
apache2 with mod_proxy
mongrel
rails
upload.rb : ##############
require ''rubygems''
require ''drb''
require ''gem_plugin''
GemPlugin::Manager.instance.load ''mongrel'' => GemPlugin::INCLUDE
2006 Sep 28
1
upload_progress and DRb.start_service crashes
Whenever I tried to start mongrel_rails with the upload progress
script, it would die with the following error:
/usr/local/lib/ruby/1.8/drb/drb.rb:837:in `getaddrinfo'': getaddrinfo:
No address associated with nodename (SocketError)
from /usr/local/lib/ruby/1.8/drb/drb.rb:837:in
`open_server_inaddr_any''
from /usr/local/lib/ruby/1.8/drb/drb.rb:860:in
2007 Jan 19
0
Mongrel::Uploads.check() not returning status
I am trying to get the mongrel upload progress working and am having
some problems. I am using Rails 1.1.6 and the latest install of
mongrel. I created the config/mongrel_upload_progress.conf per the
instructions ... it looks like this ...
uri "/",
:handler => plugin("/handlers/upload", :path_info => ''/listings/
add_photo''),
:frequency
2007 Nov 29
1
mongrel_upload_progress and attachment_fu
Can one use mongrel_upload_progress in combination with attachment_fu
(db_file)?
I wan''t to store uploaded files directly in a mysql-database - not in
the filesystem.
Is there a way to use mongrel_upload_progress to do this, or do I have
to store
files in the filesystem and copy them to the database?
Thanx
2007 Mar 08
0
Lighttpd + Mongrel Upload Progress Problem
Hi guys,
I had mongrel_upload_progress working very sweetly on my dev machine,
where mongrel was acting directly as the webserver. But when I went
to production it stopped working.
The Problem: On our production server we use Lighttpd, and it looks
like lighty is buffering the whole upload and then giving it to
Mongrel in a big chunk. This pretty much screws up the whole point
of
2007 Dec 19
0
Cluster, upload progress and sessions
Hi,
I have a mongrel cluster with a mongrel_upload_progress ... when I
upload a file, my cookie session id changes ....
So on the upload form, my Session ID is say:
BAh7ByIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%0ASGFzaHsABjoKQHVzZWR7ADoOcmV0dXJuX3RvIj8vdXBsb2FkL25vdz91cGxv%0AYWRfaWQ9M2Q0MzJiN2UtYWUxYy0xMWRjLTgzNDEtMDAxNTE3NGE0NDVj--9a36dd5853f963386ba042995bf66630c0b5734f
And
2007 Mar 30
3
example code for file upload
I have an archiving application that handles large file uploads. I
already use backgroundrb to run a behind the scenes bulk import of
records. All good. Thank you Ezra.
Now I would like to add long running file uploads to the things that
backgroundrb does for me. That''s right that ole chestnut. I''ve seen
a lot of mention of this practice around the web, but have yet
2006 Nov 13
2
mongrel upload progress and nginx
Does anyone know whether the mongrel upload progress plugin works with
nginx? It works fine for my app under pound, but not with nginx.
I am using DRb to handle the uploads as detailed at
http://mongrel.rubyforge.org/docs/upload_progress.html .
If I am using pound I can see the uploads with irb -r
lib/upload_client.rb , but cannot if I am using nginx.
Does anyone know anything more about this
2007 May 23
1
mongrel_cluster + mongrel_upload_progress + drb + capistrano + docs
I just got the mongrel_upload_progress set up with drb and the setup was
quick and easy, thanks to the good documentation on
http://mongrel.rubyforge.org/docs/upload_progress.html
I''d like to get this set up with capistrano, but there are 3 things I can''t
figure out:
- First, I can''t get lib/upload.rb to run in the background - I''m not
familiar with
2006 Jun 13
1
mongrel_upload_progress & plugin question in general
Hello,
So, I grabbed the mongrel_upload_progress code from subversion
because I really need something similar for a project I am working
on. Anyway, I installed the gem and can''t figure out a few things.
1) I''m not sure what Upload < GemPlugin::Plugin "/handlers" is for
2) How to call the Progress < GemPlugin::Plugin "/handlers" handler.
While I
2007 Feb 27
11
Mongrel upload progress not showing progress on production server
Hi all,
Tried out the mongrel upload progress plugin with Drb and it works
great on my OSX development box, but when putting it into production
(Ubuntu Dapper), uploads complete but the app isn''t returning any
values for upload progress, and uploads are not showing up in the
queue when running upload_client.rb. Before anyone asks, yes, I''m
running both the mongrel instances and