Questions tagged [user-registration]

508 questions
0
votes
1 answer

MVC4 Email verification websecurity token as querystring parameter, is it safe?

For security reasons I hate sites that use querystring parameters. For my registration process, I'm sending a websecurity token via email to users who register. The user checks their emails and clicks on a link emailed to them to confirm who they…
0
votes
4 answers

Add field for a 10 digit number in user registration form in Drupal 7

My user registration form has a field for contact number (mobile number) which is 10 digits long. I used a normal integer field which gives me "Out of range" error PDOException: SQLSTATE[22003]: Numeric value out of range: 1264 Out of range value…
aayush shrestha
  • 1,858
  • 2
  • 17
  • 33
0
votes
2 answers

Customer must register when open site in prestashop

I have problem in registration area when my site is opened by any customer he must register in my site than after he can access the site. Is there any option in prestashop .. ? Thanks, Bhavik M.
Bhavik
  • 183
  • 1
  • 1
  • 13
0
votes
1 answer

Google Apps in Domain

I'm thinking about using google apps for my website so I can use the email service, calendar to display events, and docs so that the user can upload files and it will be saved to google docs. But I had a question about pricing, i've been reading on…
Michael Benneton
  • 315
  • 1
  • 5
  • 13
0
votes
1 answer

User login and management integration into single page site

So I finally finished designed and building my website, it is a single page (Front.php) that displays all the menu options including register where the user can register and then the information gets stored into a database. The thing I need to…
John Bernal
  • 230
  • 5
  • 21
0
votes
1 answer

Validation not working for Joomla registration form

I have joomla site with Version 1.5.23. I am new to joomla and php but in the existing site I am trying to add "Sign up for mailing list" functionality. For this I have added: Sign…
Trupti
  • 59
  • 10
0
votes
1 answer

how to do Push Notification using GCM in android

Currently C2DM has moved to GCM, and i am in an starting stage in using GCM, can any one guide me what are the process to use GCM in android, how to register the device. thanks in advance.
0
votes
2 answers

How to Disable the CreateNew Account Tab in drupal 7

How do i disable the Create New Account Tab in Drupal 7. I have created a new an alternative registration form using drupal username and password form but i do not want the create new account tab displayed.How can i do thisin drupal 7?
user1611295
  • 101
  • 1
  • 1
0
votes
2 answers

WordPress: get all meta data when user registers

I have a user registration form in the front end (in the Users admin section as well) with three extra fields (apart from default ones): birthday, country, language. their values are stored in usermeta table. I have this action hook to retireve all…
0
votes
1 answer

Members table with one instead of three unique fields

In almost each code example by creating mysql joinUs table, there is the code like this: CREATE TABLE `members` ( `id` int(10) unsigned NOT NULL auto_increment, `username` text, //unique `email` text, //unique `pass` text, PRIMARY KEY (`id`) So,…
Alegro
  • 7,534
  • 17
  • 53
  • 74
0
votes
1 answer

Keeping Data on Form

I have a register form which is post data without refresh page! My problem form reset datas. It works on username and keeping user's entry. I try to do same thing for "gender" too, but if i get eror, "Genderselection get reset too.I couldn't manage…
Erdal Demir
  • 121
  • 10
0
votes
3 answers

INSERT INTO members cannot be executed

This is the problematic part of code: $query = mysql_query("INSERT INTO members (user, pass, mail, country, city, www, credo) VALUES ('$_POST[user]','$_POST[pass]', '$_POST[mail]', '$_POST[country]', '$_POST[city]', '$_POST[www]',…
Alegro
  • 7,534
  • 17
  • 53
  • 74
0
votes
1 answer

Zend Framework - Registration Form, Elegant way to check for duplicate usernames?

Does Zend Framework provide an elegant way to check if the username already exist in the database? Or is my only option to code a validator using a combination of php if/else and mysql select statements?
Ayrx
  • 2,092
  • 5
  • 26
  • 34
0
votes
2 answers

Preventing dictionary user names for registration

When I was setting up an account with gmail few years back (probably this is still a case, haven't check) I've noticed that system doesn't allow to register common terms, nouns as username, it seemed that it used a sort of dictionary for screening.…
Niteriter
  • 140
  • 7