I have managed to install devise into my rails application. The email generates and the email is sent to the user. My trouble is that when I click on the link to confirm my registration I get the following error in my google chrome browser
> `Oops! Google Chrome could not find http`
> http://http//localhost:3000/users/confirmation?confirmation_token=HCJ5yqnWkiESnVxcbeqe
It seems though that the following link_to
is not working correctly:
<p><%= link_to 'Confirm my account', confirmation_url(@resource, :confirmation_token => @resource.confirmation_token) %></p>
.
My devise confirmable set up followed the following SO question How do I enable :confirmable in Devise?
I am also using the latest version of devise.