Hello I am quite new with rails and I am currently facing a problem with a no route found to match ... Here is the context : - I have installed auth_generator to manage users & access - when a user create an account or ask to reset his password, a mail is sent with a link to click like the one below http://cvouslechef.alwaysdata.net/account/confirm/xxxxx@free.fr,8f66c07c76814d214b3f01354d980da9e844bf07 - when the user clicks on this link he gets an application rails error and the log contains a message no route found to match account/confirm
The route.rb contains : ActionController::Routing::Routes.draw do |map| map.connect '', :controller => "main"
# Route added for auth_generator plugin map.auth 'account/:action/:id', :controller => 'auth', :action => nil, :id => nil map.authadmin 'accountadmin/:action/:id', :controller => 'authadmin', :action => nil, :id => nil # end of Route added for auth_generator plugin map.connect ':controller/service.wsdl', :action => 'wsdl'
# Install the default route as the lowest priority. map.connect ':controller/:action/:id.:format' map.connect ':controller/:action/:id'
end
There must be something with me because I looked at the