On Sun, 2009-07-12 at 21:28 -0700, JannaB wrote: > I dont see anything in firebug that shows me what happens on a get or > post -- just the static snapshot of the page in a nice, expandable > tree view.
Firebug has several tabs. The one that shows you the tree you're looking at is the HTML tab. The Console tab shows you the POSTs and GETs. Change to the Console tab and let us know what you see. > HOWEVER, I do notice in my mongrel monitor window when I > submit the form I get the following (I have NO idea what this means! > But I am certain it is at the root of my problems): > > Mon Jul 13 00:26:25 -0400 2009: Read error: #<Errno::ECONNABORTED: An > established connection was aborted by the software in your host machine.> It means that in the process of constructing the response, Mongrel lost a connection it needs. Typically it's the connection to the database though, in this case it looks like it's the connection to the browser. You can see below that it's in the process of responding. (read error stacks from the bottom up). > G:/INSTAN~2/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/ > bin/../lib/ > mongrel/http_response.rb:137:in `write' > G:/INSTAN~2/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/ > bin/../lib/ > mongrel/http_response.rb:137:in `write' > G:/INSTAN~2/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/ > bin/../lib/ > mongrel/http_response.rb:95:in `send_header' > G:/INSTAN~2/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/ > bin/../lib/ > mongrel/http_response.rb:146:in `finished' > G:/INSTAN~2/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/ > bin/../lib/ > mongrel.rb:165:in `process_client' > G:/INSTAN~2/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/ > bin/../lib/ > mongrel.rb:285:in `run' > G:/INSTAN~2/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/ > bin/../lib/ > mongrel.rb:285:in `initialize' > G:/INSTAN~2/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/ > bin/../lib/ > mongrel.rb:285:in `new' > G:/INSTAN~2/ruby/lib/ruby/gems/1.8/gems/mongrel-1.1.5-x86-mswin32-60/ > bin/../lib/ > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

