In my rails app, I discovered that the key :confirmable
was not included in the user model, so when I added it, users will have to confirm their email now, what happen is like the following:
user tries to sign in, he will get an error:
You have to confirm your account before continuing. And a link:
Didn't receive confirmation instructions?
user clicks on the link
Didn't receive confirmation instructions?
and fills his emaila confirmation email is sent, but when user clicks on the link he get an error:
Some errors were found, please take a look:
But, there is no details about the error, and even in the server logs, there is nothing useful, only:
cache: [GET /en/users/confirmation?confirmation_token=14d82c74793ca19a58aff93d328fb4b06a7c8da53aef79a82c140a95e7cf7f4a] pass
So, how can I get more useful error, or how can I can debug this?