Questions tagged [user-registration]
508 questions
3
votes
1 answer
How to create controllers and views to display a User's profile with Devise gem as authentication mechanism?
I'm using Devise as the authentication mechanism for my app.
I want to add additional information to my user model, like User statistics, profile pic , and other relevant information about the user.How to achieve this?.
Even after creating "rails g…

Hemanth
- 5,035
- 9
- 41
- 59
3
votes
3 answers
Insert in two tables when registering users in Laravel
I'm using the default Laravel 5.1 user registration. I have two tables: users and shops. When user registers, the app should insert a user in the table users, get the id and use it to register a shop. I've been reading the default AuthController.php…

Daniel Vivas
- 594
- 6
- 15
3
votes
1 answer
$stmt -> execute() returning false
I've tried debuggind this issue for almost 4 hours with no luck. No error messages, $stmt -> execute() gives false for whatever reason that I do not know of.
register.php

Silvio Li
- 139
- 1
- 11
3
votes
1 answer
Laravel 5.1 How to send email verification email after registration?
I need users to verify their email address after registration. I have confirmation_code and confirmed fields in users table. How can I send an email after a user registration?

Ali Erfani
- 682
- 1
- 11
- 27
3
votes
1 answer
how to disable user register in testlink
I use bitnami-testlink-1.9.13-0-windows-installer.exe to install testlink.
how can I disable user registration then only admin can create new users in testlink.
anyone can help?

Venus
- 1,184
- 2
- 13
- 32
3
votes
0 answers
Allow only approved users django-allauth
I'm using django-allauth to allow users to login to a django app. I want users to be able to signup, but ONLY approved users should be able to access sensitive content. That is, a user who has signed up through the sign in page should have a pending…

alternate direction
- 622
- 1
- 8
- 21
3
votes
1 answer
django-registration vs scratch registration implementation for admin-activated accounts
I need to implement a fairly simple registration workflow:
User fills a registration request (form).
Admin(s) recieves a notification about the registration request. (maybe)
Admin(s) activates desired users from the django-admin interface.
User…

Adrián
- 6,135
- 1
- 27
- 49
3
votes
1 answer
How to achieve multistep in Drupal 7 default user registration form
I need to create a user registration form in Drupal 7. My requirement is as follows:-
I want to use the default Drupal 7 User Registration Form i.e admin/config/people/accounts
Form must appear in popup/modal when user click on "Create new account"…

simple user
- 349
- 3
- 22
- 44
3
votes
1 answer
Frustrated by Django User matching query does not exist message
I'm trying to implement a user registration page in Django. Seems like a simple task, but I'm getting an error I just don't understand. Here's my view:
def registration_page(request):
if request.method == 'POST':
form =…

nucklehedd
- 301
- 1
- 3
- 11
3
votes
1 answer
Database design: users and guests
I have two types of people on my site, users and guests. Virtually they are the same, except for creation/auth processes.
At the moment I have two tables:
t_users
userId[PRIMARY, AUTOINC] username[UNIQUE]
t_guests
guestId[PRIMARY, AUTOINC]…

Denis Kulagin
- 8,472
- 17
- 60
- 129
3
votes
2 answers
Facebook Registration plugin: "invalid_id" when logging out
I've just set up a Facebook Registration plugin here http://www.lexpressproperty.com/en/register.
I works like a charm but I encounter the following issue: whenever a user wants to logout (using the "x" next to his profile), he gets the following…

Julien Tessier
- 71
- 1
- 4
3
votes
3 answers
Joomla 2.5 - Modify registration form and logic
Hello I'm new to Joomla and I want to change the way an account is created (in Joomla 2.5):
Change the registation form (remove one or two fields)
Change the registration logic: I want to add more stuff in the sent email (and a pdf attachment) and…

Andrei F
- 4,205
- 9
- 35
- 66
3
votes
1 answer
Registration form with wordpress
I need a registration form to a page which template is already defined.
Should have only this fields:
email
password
Someone can help me with this?

Jonh Camel
- 61
- 1
- 3
- 6
3
votes
1 answer
ASP.NET MVC get userId when creating user?
I want to get UserId When registering
[AllowAnonymous]
[HttpPost]
public ActionResult Register(RegisterModel model)
{
if (ModelState.IsValid)
{
// Attempt to register the user
…

AliRıza Adıyahşi
- 15,658
- 24
- 115
- 197
2
votes
1 answer
How to improve email verification
I have a question about email verification and user registration. The other day I created accounts for both Twitter and Facebook and I realized in either of them I was asked to fill a CAPTCHA. And even before validating my email account I could…

Bruno Sacks
- 45
- 3