Registration is a process through which a person or entity provides some necessary information about himself to the company or other entity he/it wants to be registered with.
Questions tagged [registration]
2747 questions
8
votes
1 answer
Facebook SSO and Third Party site registration in one step?
Yes/No + more question:
Is it possible to use the Facebook SSO system and simultaneously register a user for your own website/app?
As in requiring just one keypress on the part of the user.
Also, are there working examples of this on iPhone and…

Hayk Saakian
- 2,036
- 2
- 18
- 31
8
votes
0 answers
Delphi - How to correctly register a custom graphic class since Rio 10.3.3
So I'm developing a graphic library providing a custom SVG image format which may be used within a TPicture, or any VCL component supporting a graphic image, like e.g a TImage. I wrote and maintain my library package since the XE7 compiler version,…

Jean-Milost Reymond
- 1,833
- 1
- 15
- 36
8
votes
7 answers
Is email verification with a link a bad idea
In my registration process, the user registers, they get emailed a verification link, and if they click it, only then would their account be verified. But isn't this verification method too easy for the bots?
I think an email could be created by a…

twitter
- 8,895
- 6
- 22
- 20
8
votes
4 answers
Is email address validation really needed to validate new users?
I've been looking at reddit.com and they don't require new users to enter an email address. Instead, they only require users to enter a captcha.
I've been considering only using recaptcha to verify new users, instead of both an email address and…

Simian
- 1,622
- 3
- 17
- 32
8
votes
5 answers
Best way to stop a single person from creating multiple accounts
I'm creating a game currently and I want to limit one account per person. I have a lot of families that want to play and I can't think of a way to decipher families from cheaters.
The way I'm planning on doing it currently is checking cookies and…

jefffan24
- 1,326
- 3
- 20
- 35
8
votes
2 answers
Using devise_invitable for adding Users to a Group in Ruby on Rails?
I have a "Groups" resource within my app that Users can join (a Group has_and_belongs_to_many Users and vice versa). The devise_invitable plugin allows an existing User on my app to email an invitation to another poetntial User to register on the…

Tim
- 6,079
- 8
- 35
- 41
8
votes
2 answers
Is a random string a good verification code
I'm generating a verification code to be used for account activation. You've probably seen this sort of thing before.
My question: if I were to generate this code with a complex formula like this:
md5(md5(time().'helloguys'.rand(0,9999)));
Is it…

dave
- 1,043
- 1
- 10
- 18
8
votes
3 answers
Is MD5 a good way to generate account verification code
When users register an account they get an email with a verification code that they can click to verify their accounts.
This is how I generate the verification code.
md5(rand(0,1000)
Is using the method below a bad choice? It generates a random…

dave
- 1,043
- 1
- 10
- 18
8
votes
2 answers
OpenId authentication and automatic registration with Spring Security 3.0.2
I'm implementing an app using spring security 3.0.2 with OpenId login and registration.
I can login succesfully, but if the user isn't registered i want to do:
1) Get some OpenId attributes like email and name.
2) Show to the user a registration…

xlluch
- 81
- 1
- 5
8
votes
1 answer
django reg extend - current transaction is aborted, commands ignored until end of transaction block
I am trying to extend the django-registration register form according to:
Python/Django django-registration add an extra field
but I am getting:
current transaction is aborted, commands ignored until end of transaction block
In debugging I have…

KindOfGuy
- 3,081
- 5
- 31
- 47
7
votes
2 answers
adding extra fields to django-userena forms
I am using django-userena. I have a model called UserProfile. I've added extra fields in signup form. and These fields are show up correctly but data is not saved. I want to save some fields data into another Model (Business) too. For example I've …
user514310
7
votes
2 answers
ASP.NET MVC solution for OpenID + OAuth + trivial authentication
Is there a de-facto solution for ASP.NET MVC 3+ one should use in case he needs to allow users to sign in/up via:
OpenID
OAuth
Trivial registration / manual authentication
?
What I'm basically looking for is "Membership API" that works for OpenID,…

Andrey Agibalov
- 7,624
- 8
- 66
- 111
7
votes
4 answers
How can I do member registration confirmation?
How can I register with CakePHP ?
After registering , it will send email for confirmation.
If I click the link for confirmation then the account will be confirmed.
How can I do this?
Is there any function with Auth to do that?
Or do I have to send…

cola
- 12,198
- 36
- 105
- 165
7
votes
2 answers
java 7 directory monitoring questions
I just saw an awesome feature with java 7, the directory watcher. It'll tell you when something changed in a directory without polling the directory.
1.) But it says it falls back to polling if the filesystem doesn't support registering for change…

Franz Kafka
- 10,623
- 20
- 93
- 149
7
votes
2 answers
What's the best way to implement a Registration REST API for iPhone/Android?
I'm writing a backend application with REST API for iPhone and Android. It's an internal API.
At this point, I'm trying to implement a user registration API such that the user can register from the mobile app.
I'm writing using Django and with…

Mickey Cheong
- 2,980
- 6
- 38
- 50