Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
191 views

How to generate a user registration key in Delphi?

For my current application I use a very simple scheme to register new users. When a new user registers an email is sent with a key. To check wether this key is correct a kind of checksum is computed ...
5
votes
5answers
66 views

Should a user registration form indicate if an email address is already in use?

It seems pretty typical to limit user accounts to unique email addresses. So on my user registration form, I am doing email validation and returning a message like An account has already been ...
5
votes
9answers
370 views

What user names to forbid for registration? [closed]

Possible Duplicate: What user names should I disallow? What potentially misleading user names would you forbid for user registration? I think of "moderator", "admin", "administrator", ...
3
votes
7answers
178 views

Prevent multiple registrations on a survey website

Context I am developing a survey website where anyone can vote once. Obviously I have to prevent multiple registrations for the survey to remain relevant. I force every user to login with their ...
2
votes
1answer
48 views

What am I missing for this registration form to work?

I am trying to create a simple registration form. I have the following: include('User.datatype.php'); class NewUser { function inquireSubmit() { if(isset($_POST['register'])) { ...
2
votes
2answers
87 views

During registration, what server-side data should be saved in the database

During registration, I save things like username, password(secured), user data from the registration form. What other data is common to save. Is storing the ip address from which the user verified ...
2
votes
5answers
136 views

How can I securely check if a username is already taken?

I have a form where someone can create a new user. I'd like to add some AJAX to check if a username is taken, as soon as the input field loses focus. I'm not really sure how to go about this, as this ...
2
votes
3answers
1k views

How can I improve this “register” view in Django?

I've got a Django-based site that allows users to register (but requires an admin to approve the account before they can view certain parts of the site). I'm basing it off of django.contrib.auth. I ...
1
vote
1answer
34 views

How to translate facebook location

I´m using the FB:registration Plugin and it returns me as location an Array with something like Munich, Cologne, etc. I want them translated into german and save them as München or Köln. How is this ...
1
vote
2answers
95 views

Spring Security user account registration, creation and management

I've been looking into using Spring Security for the authentication/authorization of my web application (this will be JDBC based). However, a core component seems to be left out from my perspective. ...
1
vote
0answers
58 views

How can I avoid browser prepopulating fields in my registration form?

autocomplete="off" is not what I am after. Basically, on my registration form there are fields "phone" and "password" placed one above the other. (see screenshot) The "phone" field gets, annoyingly, ...
1
vote
1answer
70 views

Being a member of a Facebook group and THEN to be able to register and login to a website. How to do it?

I've been searching the internet for a while to come up with a solution for the issue of logging in to a website with the support of Facebook account. The case study is as follows: I have a website ...
1
vote
1answer
198 views

Can't register new users on OpenFire using Smack. What do these stanzas mean?

I'm using the Android version of the Smack API and developing a client that auto-registers itself in case it was not previously registered. Well, if I manually register the user and login with the ...
1
vote
1answer
66 views

Django - Foreign Key to User model

I want to create new model, something like: user_name = models.ForeignKey(u"Username", User), but when I try to syncdb, I get this error message: "AttributeError: 'unicode' object has no ...
1
vote
1answer
80 views

Theming with CiviCRM and Drupal, php variables, basics

I've installed CiviCRM with my drupal installation, and I am creating a custom theme. What is a good resource for utilizing CiviCRM elements in the theme? I need to give/pull these things to/from ...
1
vote
1answer
112 views

Rely on Facebook user id as a permanent user identifier

We are building a web application and right now we are in the stage of deciding how to keep track of our users. Our default option is to maintain our own user registration system which is a lot of ...
1
vote
1answer
2k views

Drupal 7 user registration: creating mandatory gender/city fields

I'm a Drupal newbie, but have successfully installed it at a CentOS 5.5 Linux, PostgreSQL 8.4.7, PHP 5.3 machine. I've chosen minimal installation and then enabled following modules: Block, Image, ...
1
vote
1answer
343 views

GAE: New Google Account interface

I'm using Google's user api on Google App Engine for authentification. As nearly everyone have a Google Account and api is easy to implement, that solution is convenient. The problem is, though, with ...
1
vote
1answer
511 views

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 ...
1
vote
2answers
143 views

Storing user's avatar upon registration

I have an extended UserProfile for registering new users. My user_created function connects to signals sent upon registering basic User instance and creates new UserProfile with extended fields from ...
1
vote
1answer
735 views

Example website login/registration code?

I am looking at building the login/registration part of a website (ASP.NET) and would like to see some example code or instructions on how to do this properly. For example, how to correctly use ...
1
vote
3answers
152 views

Restful Authentication Issue

I'm using the popular restful authentication app/tutorial found here: http://railsforum.com/viewtopic.php?pid=74245#p74245 I have been using the app extensively and everything works great. The only ...
0
votes
1answer
11 views

How to add the user role in the registration form

I want to display the user role field in the wordpress user registration form. I did not see any option form the admin side. How will I do this? So that the user select his role in the registration ...
0
votes
2answers
21 views

Customer Registration on site redirecting wrong

I installed the registration application on my site - when it loaded, it looked fine, used my facebook as the trial registration customer, but when i hit the register button it opened a facebook allow ...
0
votes
1answer
47 views

Modify Devise to check for permission to register?

My app has a Permission model and permissions table with an email field. Existing users (User model) can add the email addresses of people who they would like to invite to view their information. ...
0
votes
2answers
68 views

Registration system based on JSP with MySQL connection - null's in db

i'm trying to create a registration system using jsp, beans and servlets. Registration process seems to be ok, but everytime data is supposed to be stored into database, rows are only filled with ...
0
votes
0answers
41 views

Email Confirmation & User Signup - Ruby on Rails 3.0

I'm trying to do the simplest thing ever (should be) send an email when a user signs up. my user_controller signs up a user perfectly. Also, this mailer was working perfectly up until just recently. ...
0
votes
1answer
66 views

Create new user using Winforms

I have done with the login part and now I need to create a new user (not using the wizard) and by just dropping some textboxes for username, password, confirm password, security question and security ...
0
votes
0answers
50 views

PHP code that generates new PHP file?

I'm doing sort of a twitter and I'm looking for a solution for this problem - entering the username in the url bar (twitter.com/username4) and showing his page. The thing is, how can I set the PHP ...
0
votes
0answers
30 views

How to create a userprofile when the user first logs/ registers using django-allauth

I am using django-allauth for social registration and normal django registration process. I am also using a custom userprofiles app. How can I create a custom profile, as soon as a new user is ...
0
votes
0answers
20 views

An out of the box registration server

We are currently running an an ancient registration server that runs on CL-HTTP and uses some libraries that will only run on power-pc based implementation of CL-HTTP (common lisp http server). ...
0
votes
2answers
54 views

Implementing a Facebook Page Like with the Facebook Registration Plugin

I have read through the documentation on how to set up the Facebook Registration Plugin. In reading I saw that there are what facebook calls named fields and custom fields. What I am looking for is a ...
0
votes
0answers
75 views

User Registration/Login System- Unsure about standards

I'm new here. I have made a user auth system for my site but am not sure if it meets a standard of the industry. Furthermore, I have had spam accounts created on the site and i am not sure how because ...
0
votes
2answers
23 views

Register a user without Mail

I have no mail activated and the var {EnableMail} in configure is unchecked. I have the following issue. When i want to register a new user, i fill out the form and click on submit. After that, the ...
0
votes
1answer
45 views

PHP validation form problems linking statements

I have a registration form on my website and need to validate the input before creating the account. I have read that javascript validation can be easily disabled so I have opted for php. I am having ...
0
votes
1answer
342 views

PHP AJAX Registration form submission tutorial

Can anyone please help me in finding good tutorials for php/jquery/ajax form submission validating each of the fields from the php code(server side validation). I have seen many tutorials on the web, ...
0
votes
0answers
22 views

Images uploaded with cimy get removed on wp_delete_user()

I notice a strange behaviour when I try to delete a user in Wordpress. I use the Cimy_User_Extra_Fields plugin that allows me to upload an image to each user's profile. When I delete one user, all ...
0
votes
2answers
84 views

Custom date validator in asp.net mvc

I have a problem ... I have a user registration form .. in this form I have 3 fields that represent the day, month and year of birth. I like to have 3 fields distinct (3 menus). how can I create a ...
0
votes
1answer
127 views

cakephp:registration page password displays hash value with password symbols (dots) when register button clicked

I'm trying to create a user registration page based on cakephp cookbook. When I click the register button, the password displays the hashed value with password symbol (ie. 40 dots) and since, i'm ...
0
votes
1answer
154 views

ASP.NET WAP, register user with manual approval

I'm new to ASP.NET. On a web site, I want users to be able to register, their input data to be saved in a database, but their login should not be functional until their data has been reviewed and ...
0
votes
1answer
52 views

login access on email varification in silverlight 4

We have applicaiton in silverlight 4. In our application,we have funcationlity to send mail on registration of any user on our site. after that user need to go their email and click on the link then ...
0
votes
2answers
111 views

How to implement an activate.php script?

I am trying to create a script that verifies (activates) the users account from a variable that is sent to them in their registration email. the url will look like ...
0
votes
0answers
8 views

Should I compel a user to choose between being signing up as either a contractor or providor or make it optional?

I have a site where companies approach customers who have orders. I'ma bit perplexed at setting up the registration. Right now an individual can sign up and place orders and at the same time be able ...
0
votes
1answer
55 views

Registration paid form in php [closed]

There will be two users on my site. one is free and other is paid. So for paid there will be seperate registratoin form having around 20 input fields. Now paid registration is around 97$. i am using ...
0
votes
2answers
548 views

Newbie Django error: TemplateDoesNotExist at /accounts/login/

Hi thanks for any hints on this. I am trying to get django-registration up and running on my newbie setup on Eclipse. TemplateDoesNotExist at /accounts/login/ registration/login.html ...
0
votes
1answer
95 views

Creating user authentication for web application

I am creating my first web application and want to setup a user authentication scheme though which users can be authenticated and their data can be recognized by the database. For example, for ...
0
votes
0answers
283 views

Drupal 6 Processing custom user registration form

I need to intercept the flow of user registration form. What is the suggested way to expand user registration form for extra fields? hook_form_alter versus hook_user($op='form'...) How to intercept ...
0
votes
1answer
128 views

Access user's id (Guid type) in UserRegistrationService service

On my silverlight app authentication/registration I use ASP Membership API and I just want to get the id of the user, right after he's created (I suppose after Membership.CreateUser() function call), ...
0
votes
2answers
428 views

Anonymous user form submission drupal 7

I have a situation where after doing the basic registration the user is redirected to a page where he needs to fill a small form. i aim at implementing the hook_user_insert and hook_menu to do ...
0
votes
1answer
380 views

drupal 7 configure user registration process

I want a user registration process where the email sent to the user at various conditions (e.g. registration, approval) also contains some attachments depending on user profile. Which file in Drupal ...

1 2