How does one implement dynamic, custom error pages in Rails?
For example a custom 404 error page using your application.html.erb layout and some dynamic fields in the page.
Also, how does one test this from a local machine?
|
How does one implement dynamic, custom error pages in Rails? For example a custom 404 error page using your application.html.erb layout and some dynamic fields in the page. Also, how does one test this from a local machine?
| |||
|
feedback
|
|
Check Henrik Nyh's post out. Others too can be found via google. The idea behind: Rails seems to rendering
| |||||||||||
feedback
|
|
just add the following to your ApplicationController:
You can customize the render call (use your templates, use a layout etc.) and catch errors this way. Now it catches missing method and record_not_found for you, but maybe there are cases where you want to display a 500 Error page so you can just go ahead, use this approach and make it fit for you. For testing from a local machine, it just works like that. if you only want it to work in production mode, add a
and you're fine. | |||
|
feedback
|
|
I looked at a few blog posts on Google on how to do this, unfortunately most seem to rely on polluting your ApplicationController. What I did instead was to create a template with the 404 message then use that template to update the public/404.html file from a rake task:
Now whenever I update my global layout the 404 page gets updated automatically. | |||
|
feedback
|
|
If you do decide to create a dynamic 404 (or other status code) page be sure to remove the corresponding html file from | |||
|
feedback
|
|
On the testing front, a really good way to do this (for development purposes, at least) is to use Passenger and set the rails environment to production (or comment out "RailsEnv development" in the site config). At least this way you can mimic how it works in production. But, to get this done, I have a variety of settings files that get parsed on startup and are picked up based on the environment. One of the settings is whether to show error pages (AppSettings.show_page_errors?). Then in my Application Controller, I have
So, it is generally set to the default settings, but sometimes I really need to see what exactly is going on, so I can turn it off on production. The other step is to use custom pages. In my case, I have templates based on the error that also include a form to submit to google forms (since my server may be broken). To do that, put this (and change as needed) in your Application Controller:
This will render the status codes 404, 422, and 500 using the template, but otherwise it uses unknown. If you need to handle others, it's just a matter of updating this method and adding the template. | |||
|
feedback
|