I have tried to make it work around 6 times using different tutorials, and I arrive to the same result. I install the plugin correctly, generate the files correctly, add the routes correctly, migrate my database correctly, and yet when I go to myurl.com/signup or myurl.com/login, the "something went wrong" rails page appears (like a 404 error).
I am on rails 2.3.3. Does this plugin have problems with 2.3.3? Because it does not work neither on local nor on server development. Any ideas on what might be wrong?
Here is my routes file:
# routes.rb
ActionController::Routing::Routes.draw do |map|
map.resources :users
map.resource :sessions
map.signup '/signup', :controller => 'users', :action => 'new'
map.login '/login', :controller => 'sessions', :action => 'new'
map.logout '/logout', :controller => 'sessions', :action => 'destroy'
end
Thanks!