I want to test the 500 error pages in my Rails app using the development environment.

I already tried this in config/environments/development.rb:

config.action_controller.consider_all_requests_local = false

But this does not seem to have any effect.

link|improve this question

Would changing your environment to Production help? – Nuby Mar 10 '11 at 18:00
feedback

5 Answers

up vote 0 down vote accepted

You can either:

  1. access the application using address other than localhost or 127.0.0.1 which rails considers by default to be local requests
  2. Override local_request? in application_controller.rb to something like:
def local_request?
  false
end

The second will stop rails treating requests from localhost and 127.0.0.1 as local requests which combined with consider_all_requests_local = false should show you your 500.html page.

link|improve this answer
local_request? is deprecated in Rails 3 and onwards: apidock.com/rails/ActionController/Rescue/local_request%3F – James Mar 5 at 20:33
feedback

The only way I've found to do this so far is to set config.consider_all_requests_local = false

in development.rb

and then access the URLs using my local IP address: http://192.168.1.135:3000/blah

The other settings mentioned don't seem to have any effect.

link|improve this answer
There are so many answers about this on Stackoverflow. This is BY FAR the easiest approach. Thank you! – Eric Feb 9 at 22:11
feedback

I think the proper setting to twiddle is this:

config.action_view.debug_rjs = false

Why it's still labelled rjs isn't entirely clear.

link|improve this answer
I now have both set to false and it still doesn't work... – tbh Nov 11 '10 at 20:05
this doesn't have any effect for me either – u2622 Mar 10 '11 at 17:37
feedback

None of the proposed solutions worked in my Rails 3 app. The quick and dirty solution for me was to simply hit the error pages directly to see the rendered HTML. For example,

http://0.0.0.0:3000/404.html

http://0.0.0.0:3000/500.html
link|improve this answer
feedback

You should add the below lines to the application_controller,

unless  ActionController::Base.consider_all_requests_local
    rescue_from Exception, :with => :render_500
    if  ActiveRecord::RecordNotFound
      rescue_from Exception, :with => :render_404
    end
    rescue_from ActionController::RoutingError, :with => :render_404
    rescue_from ActionController::UnknownController, :with => :render_404
    rescue_from ActionController::UnknownAction, :with => :render_404
end

Then try running with the below settings.

config.action_controller.consider_all_requests_local = false in config/environments/development.rb:

It will work. Please dont forget to write the function in application_controller.rb to render the layout for each of the error messages .

Thanks & Regards, Rajesh

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.