Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6536841
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T10:32:34+00:00 2026-05-25T10:32:34+00:00

I want to catch unknown action error in Rails 3, that shows Unknown Action

  • 0

I want to catch unknown action error in Rails 3, that shows “Unknown Action” error on development and the 404.html on production. I tried putting this rescue_from handler on my ApplicationController (and also on an actual controller, just in case) but I still see the ugly error.

I have custom stuff on the 404, and it can’t be plain .html file.

My route:

match '/user/:id/:action', controller: 'users'

The URL I’m accessing: /user/elado/xxx

The rescue_from code:

rescue_from AbstractController::ActionNotFound, :with => :action_not_found

def action_not_found
  render text: "action_not_found"
end

The error in the browser:

Unknown action

The action 'xxx' could not be found for UsersController

And in the console:

Started GET "/user/elado/xxx" for 127.0.0.1 at 2011-09-07 19:16:27 -0700

AbstractController::ActionNotFound (The action 'xxx' could not be found for UsersController):

Tried also rescue_from ActionController::UnknownAction.

Any suggestions?
Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T10:32:35+00:00Added an answer on May 25, 2026 at 10:32 am

    rescue_from was slightly broken when Rails 3 came out (still broken in 3.1 too). Basically you can’t:

    rescue_from ActionController::RoutingError
    

    anymore. See here.

    The solution, for now, is what hamiltop recommends. Use a catch all route that goes to your “routing error” route. Make sure you put it at the end of your config\routes.rb file so it is processed last.

    # Any routes that aren't defined above here go to the 404
    match "*a", :to => "application#routing_error"
    
    def routing_error
        render "404", :status => 404
    end
    

    Note: This method has one major drawback. If you use an engine such as Jammit or Devise the catch all will route will make Rails ignore the engine’s routes.

    If you aren’t using an engine that has it’s own routes then you should be fine.
    However, if you do use an engine that defines its own routes see @arikfr’s answer.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to use VBScript to catch errors and log them (ie on error
In a sort of try/catch form I want to execute a bash that doesn't
I want to catch and ignore and ArrayIndexOutOfBoundsException error (basically it's not something I
i want to catch the BOOT_COMPLETED action in my program, how to restart the
I am using codeplex NVelocity library on .net and i want to catch an
I want my app to catch downloads of a particular kind of file. Here's
The problem drives me to the big try-catch loops. I want smaller. So how
So I want to create a JDBC connection to MySQL server that is installed
This questions is related to java exceptions, why are there some cases that when
i want parse xml file, which does't have xml extension, like this: http://bizonek.wrzuta.pl/xml/plik/1ANdXCgTOit/unknow/undefined/643/ my

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.