similar to: Can''t get upload progress bar working

Displaying 20 results from an estimated 900 matches similar to: "Can''t get upload progress bar working"

2007 Apr 22
0
request_ends callback
I''m putting together a file upload server using the merb upload progress stuff (nice!) and I wish there was a request_ends callback. Why? I need to do some processing of the file after the upload (like pushing it to Amazon S3 in the back) and I''d like to continue providing user feedback through the progress HTTP requests The nicest way to do that would be to leverage the
2006 Jun 23
1
SIP -> PSTN calls not connecting properly
Hi, I've got a problem with my asterisk set up which has been going on for a while (months). I'm currently running 1.2.7.1 on a gentoo box with the topology below: +-----+ PSTN ---------+ * +------------- Service Provider (wctdm400p) +-+-+-+ IAX | | | | FXS --+ +-- SIP (cisco 7940)
2005 Jan 24
3
TDM400 in aging Dell Optiplex
I've got an old Dell Optiplex (Pentium-II, 1998 Vintage) which is successfully running an X100P card. I'm hoping to upgrade to a TDM400. Has anybody tried running these cards in old Optiplex machines? I'm not particularly worried about horsepower - more about the motherboard having a PCI bus that's able to power up the card... -Ronan
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 Apr 06
3
OT: HOWTO: Create a 90mbit bonded link 600 m etre s away with Cat 3 or telco wire [long]
>Or, you could use a Corinex Phone Line Bridge which runs 128Mbits up to 2000 >feet. They also have a co-ax version which is 200mbits and goes 4000 feet... >About $300 for both ends. too bad they don't say what the bandwidth is at max distance - anyone know?
2006 Dec 18
1
Upload Progress (mup.js) typo
I was using the sample_app and found out that the progress bar wasn''t changing color. It was updating the percentage but wasn''t updating the width of the status bar style... I found that the mup.js was missing and appended "px" So here it is: my first ever Merb patch! http://pastie.caboo.se/28450 cheers, -rjs- (the_mug) Blog: http://www.rosamour.com --------------
2004 Jan 26
7
GSM modems
Hi all, I am interested in interfacing a GSM modem to *. I've seen a few comments about doing this, but I'm not clear whether people have actually made it work. I've used GSM modems for various data jobs, mostly high volume SMS (no, not nasty marketing stuff - high volume solicited SMS :-) ) . These only have analogue ports for voice. Does anyone know of units with digital voice
2007 Jan 19
5
Merb Init Script
I''m trying to emulate the mongrel_cluster_ctl but it takes a -c conf_file option... meaning I can run it from anywhere as long as I tell it where the conf file is. Merb doesn''t have that capability does it? (it has an additional/supplemental config like mup.conf etc) Do I have to be under the merb_app root /path/to/merb/app/ to be able to run merb? Let me know. Thanks,
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 Oct 11
0
Upload Progress and Finishing Up
I posted this on Rick''s Beast forum but got zilch so I am gonna try it here: Ok, I have been fiddling with this trying to integrate it into my app. I believe I?m just having a bit of trouble with the last part? In the example, the upload action doesn?t really return, it renders some ?text?, that basically then invokes a ?cleanup? method on the JavaScript. Well, I want to do a few of
2008 May 05
0
mongrel_upload_progress_bar - where are my files?
> I just configured mongrel_upload_progess_bar following this doc: > > http://mongrel.rubyforge.org/wiki/UploadProgress > > My "config/mongrel_upload_progress.conf" looks like: > > uri "/", > :handler => plugin("/handlers/upload", > :path_info => ''/Users/railer/Documents/RAILS/dummy/files/upload'', >
2008 May 05
0
mongrel_upload_progess_bar - where are my files?
> I just configured mongrel_upload_progess_bar following this doc: > > http://mongrel.rubyforge.org/wiki/UploadProgress > > My "config/mongrel_upload_progress.conf" looks like: > > uri "/", > :handler => plugin("/handlers/upload", > :path_info => ''/Users/railer/Documents/RAILS/dummy/files/upload'', >
2006 Jan 14
0
Lighttpd and upload progress
Last time I checked, the upload progress module (http://api.rubyonrails.com/classes/ActionController/UploadProgress.html) was not working under Lighttpd. Anyone know if that that has changed or when it will change? -- Posted via http://www.ruby-forum.com/.
2010 Sep 09
1
406 Not Acceptable with swfupload
---------flash_session_cookie_middleware.rb require ''rack/utils'' class FlashSessionCookieMiddleware def initialize(app, session_key = ''_session_id'') @app = app @session_key = session_key end def call(env) if env[''HTTP_USER_AGENT''] =~ /^(Adobe|Shockwave) Flash/ req = Rack::Request.new(env) params =
2007 May 14
7
Help a newb with 0.3.1
Hi, first off thanks Ezra for Merb - it''s certainly interesting and I''m keen to have a play. However, I''m having difficulties in getting started. I''ve followed the docs for setting up mrblog and everything seems to be installed correctly, and merb appears to start fine: $ merb you must install the markaby gem to use .mab templates you must install the
2007 Nov 06
2
what did I do?
I''m following merb trunk. This morning I updated my gems, sync''d merb source and installed the merb gem from source. I don''t know if I did something wrong, or if a new gem messed things up, or if there was a merb change which broke something. Now I get this error: Request: REQUEST_URI: / (2007-11-05 20:27:04) Params: {"action"=>"index",
2007 Sep 21
1
RESTful route gives a 500 error when Content-Type is set
I have encountered a problem with a RESTful route, I have the simple route; r.resources :people With a corresponding controller, when I tried to access it using ActiveResource I get a server error, I have tracked this down to a problem where if the header ''Content-Type: application/xml'' is sent it errors out: > curl -H ''Accept: */*''
2007 Dec 19
3
Trapping custom exceptions in merb 0.5.0
Hi, I have the following setup: class Fred < Application class InvalidKey < Merb::ControllerExceptions::Unauthorized; end def blee raise InvalidKey unless key end end I have added a view exception template in views/exceptions/invalid_key.html.erb but I am not seeing the exception page being rendered ?? The request seems to correctly go to
2008 Jan 16
3
Application generation
Hi All, Is anyone seeing this? $ merb merb_paste /usr/local/lib/ruby/gems/1.8/gems/merb-0.5.2/lib/merb/config.rb:69:in `parse_args'': uninitialized constant Merb::RELEASE (NameError) from /usr/local/lib/ruby/1.8/optparse.rb:785:in `initialize'' from /usr/local/lib/ruby/gems/1.8/gems/merb-0.5.2/lib/merb/config.rb:67:in `new'' from
2006 Dec 04
2
Merb on Win32 Platform
I''m trying to get Merb running on Windows XP SP2 and am experiencing some difficulties. I load http://localhost:4000/posts/new in my browser expecting to see the contents of new.herb rendered. However the following error is reported: Request: PATH_INFO: /posts/new Params: {"action"=>"new", "id"=>nil, "controller"=>"posts"}