Questions tagged [devise-confirmable]

Devise's Confirmable module

Its used for confirming the email id mentioned by user to signup. It will email the confirmation token to the registered email id and user can confirm by clicking on the provided link to confirm his/her account.

251 questions
0
votes
1 answer

Devise confirmation email not converted from haml to html

I'm using Devise's confirmable module and when the app sends a email asking the user to confirm their email address, it doesn't convert the message form HAML to HTMl. Instead, this is what gets delivered to the user. %p Welcome #{@resource.email}!…
Ben Downey
  • 2,575
  • 4
  • 37
  • 57
0
votes
1 answer

Devise - ActionController::RoutingError (No route matches [GET] "/confirm"):

I am using the 'Confirmable' module for Devise, and doing an 'email-only signup' However, once the user confirms their email address and adds their password, this is the error I get in my log on Heroku (Cedar Stack): 2012-06-20T16:02:37+00:00…
marcamillion
  • 32,933
  • 55
  • 189
  • 380
0
votes
4 answers

devise config.action_mailer.default_url_options not working

I have switched over to pow in order to use ssl in development and I want to switch the host configuration in development, however devise continues to send email prefixed with the localhost:3000 domain. Here is what I have in my…
tomciopp
  • 2,602
  • 2
  • 31
  • 60
0
votes
1 answer

Upgrade from restful_authentication to devise :confirmable not confirming old users

I have upgraded my application from Rails 2.3.5 to Rails 3.2.2. I have replaced authentication from restful authentication to devise with guidance of steps given in devise wiki. I have user model as devise :database_authenticatable,…
-1
votes
1 answer

How to fix "unknown column" error in query

I'm getting this error Mysql2::Error: Unknown column 'users.' in 'where clause': UPDATE `users` SET `confirmed_at` = '2020-02-29 19:14:22', `updated_at` = '2020-02-29 19:14:22' WHERE `users`.`` IS NULL after I click on the link sent by Devise to my…
Nindo
  • 96
  • 1
  • 9
-1
votes
1 answer

Mail chimp with Devise and Rails

I'm trying (failing miserably) to setup mandrill/mailchimp to work with rails 4 and devise. I'm having loads of trouble using dynamic fields, but now, i can't even insert my logo without mail chimp overriding it to put a black square background…
Mel
  • 2,481
  • 26
  • 113
  • 273
-1
votes
1 answer

Devise get user id from email confirmation

Is it possible to get the user id from the email confirmation token when the user confirms their email, rather than the user having to log back in? From what I understand, it was easier in past versions of devise but may no longer be possible.
chris
  • 1,869
  • 4
  • 29
  • 52
-1
votes
1 answer

Rails Devise redirect after signup

I have rails app that uses Devise with confirmable by email. Emails are send thru gmail. When user fill registration form then is redirected to "/user", but this path doesn't exists hence app crashes. Is there anything that I can do, to force…
Skodik.o
  • 506
  • 4
  • 21
-1
votes
1 answer

Devise: require token to register

I want to permit users to sign up only if they have a token. I'm thinking the Confirmable class might be able to help me there. Any ideas? Maybe a single administrator can register and send confirmations to invitees email addresses? Is there a gem…
t56k
  • 6,769
  • 9
  • 52
  • 115
-1
votes
2 answers

On signup - creating a duplicate account with the same credentials on another site

I am using Devise to handle registration process. How can I create a duplicate account via ajax on another site using the same credentials? I can overwrite Registration controller, but don't know how to get unencrypted password.
aquauser
  • 21
  • 4
-2
votes
1 answer

Rails devise confirmable radio button

I am using devise gem, I used :confirmable to let the user confirm his account so the email will be sent to to him after he signed up and if he open the link it will be confirmed immediately.. What I want is to send the email to the user, after he…
nourza
  • 2,215
  • 2
  • 16
  • 42
1 2 3
16
17