views:

26

answers:

1

I usually get the typical red error message when errors occur in my staging environment but lately the errors have been resulting in a blank screen. Is there a way to explicitly tell Rails to raise the typical error message in specific environments?

+1  A: 

In your staging.rb environment file set config.action_controller.consider_all_requests_local to true.

nicholaides