When I go to my localhost:3000/users page, I get:
Unknown action
The action 'index' could not be found for UsersController.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|||||
|
|
First you need to make sure that your controller actually has an index action, so
and check it by typing
in the terminal to check that the routes are right.
You might also want to check that the |
|||
|
|
|
You need not define the default actions (assuming appropriate http method), all you need to do is add the following to your config/routes.rb
|
|||
|
|
|
If you were following Hartl's tutorial,then accessing localhost:3000/users will cause this error. Try localhost:3000/signup instead. |
||||
|
|