Has the development error screen been removed? When using 5206 and getting an applicaiton errror i get the nicely formatted view of the error in the browser. Now, as of 5208 i get ''cant display page'' http 500 and the error streams in the console ? How do i get my nice error screen ??? -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---
> Now, as of 5208 i get ''cant display page'' http 500 and the error streams > in the console ? > How do i get my nice error screen ???small mistype above. I am having to use tail to watch for error details. They dont appear in the console. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---
Chris Selmer
2006-Oct-01 09:39 UTC
Re: error page replaced with http 500 as of edge 5208 ?
I had a similar problem with 5212 - there appears to be some problem with the following file. Or it could be something intentional going on that I''m just not bright enough to figure out. On line #44 of vendor/rails/actionpack/lib/action_controller/templates/rescues/_request_and_response.rhtml 41: 42: 43: <h2 style="margin-top: 30px">Response</h2> 44: <b>Headers</b>: <%=h response.headers.inspect.gsub(/,/, ",\n") %><br/> I was able to do a temporary hack to get my error screens back by changing line 44 to the following: <b>Headers</b>: <%=h response.headers.inspect.gsub(/,/, ",\n") if response and response.headers %><br/> Hope this helps. Chris On 9/30/06, Adam Madd <rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> > > > > Now, as of 5208 i get ''cant display page'' http 500 and the error streams > > in the console ? > > How do i get my nice error screen ??? > > small mistype above. I am having to use tail to watch for error details. > They dont appear in the console. > > > -- > Posted via http://www.ruby-forum.com/. > > > >--~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---
thanks! ill try that out. Might get me of 5206 =) -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---
Jamie Orchard-Hays
2006-Oct-02 15:12 UTC
Re: error page replaced with http 500 as of edge 5208 ?
I''ve had this problem as well--when headers is nil, it blows up. Have either of you reported this on Trac? Jamie On Oct 1, 2006, at 5:39 AM, Chris Selmer wrote:> I had a similar problem with 5212 - there appears to be some > problem with the following file. Or it could be something > intentional going on that I''m just not bright enough to figure out. > > On line #44 of vendor/rails/actionpack/lib/action_controller/ > templates/rescues/_request_and_response.rhtml > > 41: > 42: > 43: <h2 style="margin-top: 30px">Response</h2> > 44: <b>Headers</b>: <%=h response.headers.inspect.gsub(/,/, ", > \n") %><br/> > > > I was able to do a temporary hack to get my error screens back by > changing line 44 to the following: > > <b>Headers</b>: <%=h response.headers.inspect.gsub(/,/, ",\n") if > response and response.headers %><br/> > > Hope this helps. > > Chris > > > > > On 9/30/06, Adam Madd <rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org > wrote: > > > Now, as of 5208 i get ''cant display page'' http 500 and the error > streams > > in the console ? > > How do i get my nice error screen ??? > > small mistype above. I am having to use tail to watch for error > details. > They dont appear in the console. > > > -- > Posted via http://www.ruby-forum.com/. > > > > >--~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---
Chris Selmer
2006-Oct-02 16:15 UTC
Re: error page replaced with http 500 as of edge 5208 ?
Just reported along with a patch - #6329 -Chris On 10/2/06, Jamie Orchard-Hays <jamieorc-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > > I''ve had this problem as well--when headers is nil, it blows up. > > Have either of you reported this on Trac? > > Jamie > > On Oct 1, 2006, at 5:39 AM, Chris Selmer wrote: > > > I had a similar problem with 5212 - there appears to be some > > problem with the following file. Or it could be something > > intentional going on that I''m just not bright enough to figure out. > > > > On line #44 of vendor/rails/actionpack/lib/action_controller/ > > templates/rescues/_request_and_response.rhtml > > > > 41: > > 42: > > 43: <h2 style="margin-top: 30px">Response</h2> > > 44: <b>Headers</b>: <%=h response.headers.inspect.gsub(/,/, ", > > \n") %><br/> > > > > > > I was able to do a temporary hack to get my error screens back by > > changing line 44 to the following: > > > > <b>Headers</b>: <%=h response.headers.inspect.gsub(/,/, ",\n") if > > response and response.headers %><br/> > > > > Hope this helps. > > > > Chris > > > > > > > > > > On 9/30/06, Adam Madd <rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org > wrote: > > > > > Now, as of 5208 i get ''cant display page'' http 500 and the error > > streams > > > in the console ? > > > How do i get my nice error screen ??? > > > > small mistype above. I am having to use tail to watch for error > > details. > > They dont appear in the console. > > > > > > -- > > Posted via http://www.ruby-forum.com/. > > > > > > > > > > > > > >--~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---
Chris Selmer
2006-Oct-09 00:33 UTC
Re: error page replaced with http 500 as of edge 5208 ?
Just an update that the patch was accepted as of 5241, so this should no longer be a problem. http://dev.rubyonrails.org/changeset/5241 -Chris On 10/2/06, Chris Selmer <cmselmer-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > Just reported along with a patch - #6329 > > -Chris > > On 10/2/06, Jamie Orchard-Hays <jamieorc-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > > > > I''ve had this problem as well--when headers is nil, it blows up. > > > > Have either of you reported this on Trac? > > > > Jamie > > > > On Oct 1, 2006, at 5:39 AM, Chris Selmer wrote: > > > > > I had a similar problem with 5212 - there appears to be some > > > problem with the following file. Or it could be something > > > intentional going on that I''m just not bright enough to figure out. > > > > > > On line #44 of vendor/rails/actionpack/lib/action_controller/ > > > templates/rescues/_request_and_response.rhtml > > > > > > 41: > > > 42: > > > 43: <h2 style="margin-top: 30px">Response</h2> > > > 44: <b>Headers</b>: <%=h response.headers.inspect.gsub(/,/, ", > > > \n") %><br/> > > > > > > > > > I was able to do a temporary hack to get my error screens back by > > > changing line 44 to the following: > > > > > > <b>Headers</b>: <%=h response.headers.inspect.gsub(/,/, ",\n") if > > > response and response.headers %><br/> > > > > > > Hope this helps. > > > > > > Chris > > > > > > > > > > > > > > > On 9/30/06, Adam Madd <rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org > wrote: > > > > > > > Now, as of 5208 i get ''cant display page'' http 500 and the error > > > streams > > > > in the console ? > > > > How do i get my nice error screen ??? > > > > > > small mistype above. I am having to use tail to watch for error > > > details. > > > They dont appear in the console. > > > > > > > > > -- > > > Posted via http://www.ruby-forum.com/. > > > > > > > > > > > > > > > > > > > > > > > >--~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---