Displaying 20 results from an estimated 40000 matches similar to: "Upload Progress w/ Mongrel"
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
2006 Aug 05
3
Uploading/file_column and Mongrel
Howdy,
I recently switched an app to Mongrel and since the switch, when I upload
files using the file_column plug-in, the files are not uploaded with the
correct permissions.
I want something like this:
-rw-rw-rw- file.jpg
But I am getting:
-rw------- file.jpg
So, of course the files aren''t being served up by the Web server.
Mongrel is running as the ''mongrel''
2006 May 11
7
Upload progress "plugin"
mongreleers,
This is a hack for adding basic upload progress support to Mongrel.
Currently, you can monitor the upload of any POST. I''m sure some work
needs to be done to get it functioning with Rails.
Save as lib/mongrel/progress.
Anyway, here''s how to start Mongrel with it:
require ''mongrel''
require ''mongrel/camping''
require
2006 May 24
0
upload progress progress (progress of the upload progress progress plugin)
Hey guys, I''ve been hacking on the upload progress stuff that _why
started. I started a backpack page if anyone''s interested.
http://technoweenie.backpackit.com/pub/602283
If you want access to the files, send me your backpack email.
--
Rick Olson
http://techno-weenie.net
2006 Jul 24
4
Mongrel + BackgrounDRb + File Column = Upload Progress Bar?
Hi there,
I''ve been digging around trying to find some information (mostly examples)
on how one would handle a progress bar upload using BackgrounDRb and File
Column. I did read http://backgroundrb.rubyforge.org/ and Ezra''s blog of
course, but I still have a few questions.
I made a simple upload form (as a test) that is submitted to the
"upload_song" action.
def
2006 Jun 25
0
Mongrel 0.3.13.2 -- RailsConf 2006 Release
Hello folks,
Another release going out based on the very limited work done at
RailsConf. Despite all the fun and the talks I did manage to squeeze in
some more defensive maneuvers for everyone''s favorite canine ninja, and
sit down with Why and Rick Olsen to hook up the mongrel_upload_progress
plugin. They quickly working to get Rails and Camping gear to do nice
upload progress
2006 Jul 28
0
Mongrel and Upload Status
I recall seeing a note about some upload progress indicators in Mongrel,
etc...
Anything new on that? I believe the last Mongrel release had something on
it.
Anyone using it?
Cheers,
Hunter
2007 Feb 16
0
Mongrel upload progress and models with other fields
I''m trying to set up a system that will allow users to upload files
using the mongrel upload progress gem to a model that includes other
information.
While I''m willing to hack around with this myself for a while to get
it working, I was hoping that someone had done this before and might
be able to give me some hints/code to look at.
My mediafile has a description, mediatype,
2006 Apr 19
5
Mongrel 0.3.12.5 -- Pre-Release with File Upload whyness
I''ve got a Mongrel 0.3.12.5 pre-release in the releases directory I''d like
people to try out:
gem install mongrel --source=http://mongrel.rubyforge.org/releases/
This release incorporates why''s changes to allow for uploading files much
more efficiently and for streaming out files via a HttpResponse.send_file
call.
I re-wrote the file upload part what why created to
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
2006 Sep 07
2
Upload progress and limiting file sizes
Thanks to all concerned with the implementation of the Upload
Progress plugin, it works really well.
I want to limit the size of files to be uploaded to say 10Mb. Is
there any way for Mongrel to ''refuse'' to upload files over a certain
size and then pass an error onto Rails in order to display feedback
to the user? I don''t really want to have to upload the whole
2007 Sep 18
1
Mongrel Upload Progress progress method returns Content-Length: 0
Running into a strange bug using the mongrel upload progress plugin
handler, sitting in front of a simple mongrel.
The bug appears on an old Xserve (mac OS X 10.3.9 powerpc), but not on
my macbook pro, or even a generic 686 linux box.
http://pastie.textmate.org/98341
The gist of the pastie above shows that attempts through the browser
and curl are actually hitting the filesController, as
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 Jan 24
4
Rails App on Mongrel+Apache Stops Listening
Howdy,
I''m trying to debug a situation where a Rails app running on Mongrel
+Apache stops listening to requests. Restarting Mongrel and Apache
brings it back to life.
First off, here''s some info on versions, etc...:
Red Hat Enterprise Linux ES release 3 (Taroon Update 8)
ruby 1.8.5 (2006-12-04 patchlevel 2) [x86_64-linux]
Mongrel 1.0.1
Rails 1.2.1
fastthread (0.6.2)
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:
2006 Sep 20
0
boy, that mongrel_upload_progress handler sucks!
I started actually using the upload progress handler, and noticed it
was leaking memory over time. Looking at the code, I noticed that
cancelled uploads weren''t being cleaned up. I bugged Zed about adding
a request_abort callback to handlers, but I found a simple way to
monkey patch that in:
# config/mongrel_upload_progress.conf
# yes, this file is being used with -S meaning
2006 Aug 15
1
0.3.13.4 w/ File Upload Progress?
So, do these new shiny 0.3.13.4 releases have the previously mentioned
upload progress stuff baked in and ready to use?
H
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
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
2010 Mar 01
0
Upload progress bar with Paperclip, Mongrel, Apache
Hello all,
I''ve been looking now for several days for an easy to use progress bar
plugin or tutorial. I have Paperclip installed and it works great.
My production server runs on Apache and Mongrel.
It''s amazing that there''s no easy set up progress bar plugin or gem out
there. I have seen "SWFUpload", but that seems very complicated to
implement.
Thank you