Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using devise for authentication and now i want to test the forgot password link which works fine when i input my email address and i eventualy receive the mail. but the problem is, when i click on the change password link in my email i get redirected to a 404 page proided by my nginx server which says

the requested URL /users/password/edit was not found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

What can i be doing wrong as i have not made any changes to the devise defaults.

share|improve this question
1  
try running rake routes and check whether the route is available. – Logesh Dec 31 '12 at 12:48
i did that. and it turns out that the route is available and thats what scares me the more – Uchenna Okafor Dec 31 '12 at 13:10
Are you sure that the path onto email is correct? If you don't set a proper default_url_options[:host], ActionMailer will generate a wrong URL path. – Mich Dart Dec 31 '12 at 13:39
@MichDart that was exactly the problem. i got the url wrong. thanks for making me spot this – Uchenna Okafor Jan 1 at 8:36

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.