Questions tagged [registration]

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.

2747 questions
30
votes
3 answers

Installing a TestFlight app on iOS iPhone Simulator - Registration Failed

I'm attempting to install a TestFlight app on XCode's iOS simulator using the iPhone simulator. The link to the TestFlight app takes me to a page that says "This device will need to be registered before it can install betas." There is a friendly…
emery
  • 8,603
  • 10
  • 44
  • 51
29
votes
5 answers

Is there a Spring Security OpenId Registration like stackoverflow?

I cannot find a complete example anywhere of a Spring Security Web App with Open Id registration similar to stackoverflows. I would say I'm pretty techy guy but I find Spring Security extremely intimidating with its weird Spring XML DSL. I have…
Adam Gent
  • 47,843
  • 23
  • 153
  • 203
29
votes
3 answers

Easy-to-use django captcha or registration app with captcha?

I want to implement user registration using captcha in Django. The workflow of django-registration app is a great, but it doesn't have captcha. What captcha would you recommend to use with it? Are there some other variants of registration+captcha or…
gleb.pitsevich
  • 1,269
  • 2
  • 12
  • 18
29
votes
7 answers

Object Library Not Registered When Adding Windows Common Controls 6.0

I am trying to install Visual Studio 6 on a Windows 7 32bit machine. The OS intall was from bare metal. I followed the instructions mentioned here (which I have used before) The install went fine with no errors reported but when I try to add the…
Matt Wilko
  • 26,994
  • 10
  • 93
  • 143
23
votes
5 answers

How can I send a welcome email to newly registered users in Rails using Devise?

I am using Devise on Rails and I'm wondering if there is a hook or a filter that I can use to add a bit of code to Devise's user registration process and send a welcome email to the user after an account has been created. Without Devise it would be…
picardo
  • 24,530
  • 33
  • 104
  • 151
22
votes
6 answers

Inhouse registration vs. OpenID vs. Google Friend Connect vs. Facebook Connect vs. (etc)

I'm trying to decide how to allow users to register for my website... there's openID, clickpass, facebook connect, google friend connect, etc, or the good old fashioned in-house "enter a username, email, password, etc." Looking briefly at How to…
Sam
  • 6,167
  • 6
  • 26
  • 24
22
votes
2 answers

where do I get a client_id from?

I am new to Facebook based development and just require a basic Facebook registration form, I've found the "registration form and its html to embed into my website", but need a client_id so I can use it. Where do I get this from?
user1488448
  • 221
  • 1
  • 2
  • 3
21
votes
8 answers

OAuth? ,OpenID? Neither? Which one should my site support?

I working on a new website and wanted some advice/feedback on OAuth vs OpenID vs Standard site owned username/password.
Justin Locke
20
votes
3 answers

How to add new user to Spring Security at runtime

I save users in a DB table via Hibernate and I am using Spring Security to authenticate: import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.*; import…
20
votes
2 answers

Where can I download a list of world cities and towns by ISO 3166-2 state code?

World countries and their standard codes are listed in ISO 3166-1. States (whatever are they called in different countries ("lands" in Germany, "federation subjects" in Russia etc.)) of the countries and their codes are defined in ISO 3166-2. But I…
Ivan
  • 63,011
  • 101
  • 250
  • 382
19
votes
8 answers

DSA: What can a hacker do with *just* a public key?

The shareware registration system I'm currently developing embeds the public DSA key in the executable itself, and the private key resides on a server. (For the sake of discussion let's assume that the server is 100% secure, and there is no way for…
kurige
  • 3,749
  • 2
  • 21
  • 24
18
votes
3 answers

Devise: Allow admins to edit other users - Rails

I'm trying to allow an admin user to edit other users in Devise, but when I try to access an edit page for another user (e.g. /users/1/edit), I get the following message: Unknown action Could not find devise mapping for path "/users/1/edit" The…
Haidn Foster
  • 181
  • 1
  • 1
  • 7
18
votes
5 answers

Redirecting Wordpress's Login/Register page to a custom login/registration page

I have a website, with a user system. I want to integrate wordpress's user system into that website's, but I still want to use the website's register/login pages. I don't want anybody to be able to login or register using Wordpress's login or…
Bruno De Barros
  • 1,535
  • 2
  • 16
  • 30
17
votes
5 answers

Only allow 'business' email address register on website

We are looking to build a new website that is specifically for commercial/business use. We need to only allow 'business' email addresses register. So users with Gmail, Hotmail, Yahoo etc cannot apply with those email addresses. Is there a way…
Ian
  • 179
  • 1
  • 1
  • 3
17
votes
2 answers

Create Account, Forgot Password and Change Password

Spring Security is great when the developer wants to secure his web app. However, what about creating the account? and "forgot password"? most login pages have these links as well as the username and password fields. Spring's default login-page does…