registration

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 really any better than generating just a random string of 32 characters and numbers lik...

User registration with invitation

I'm working on an application where users can register when they recieve an email invitation for the app. Right now what I do is generate invitation-codes that are sent to the users and stored in the database. The user then goes to the url given in the email which contain the invitation code, like this: http://myapp.com/user/register/5...

Registration System, Do I need both in app and internet validation?

I am working on a registration system for a desktop app. Before I only had in app validation where the user name and email address were tied to the key and only verified when typed into the program. I am working to setup a new system where the registration information is stored in an online database and when the user registers the data...

how to test django registration app process while in development server (no mail)

I am developing a django application on my MAC. The development server that comes with django is great. However, I installed the django-authopenid (combines django-registration app with openID) which follows the 3 step process: user signs up, app sends a confirmation email with link, and user clicks on link to confirm sign-up. Since ...

Drupal hook_user switch for registration and submit

I need to send registration details somewhere else when Drupal completes a registration. I can't find the correct variables for the switch. I tried this but it's not working. This function is in my module "externalnewsletter". function externalnewsletter_user($op, &$edit, &$account, $category = NULL) { if ($op == 'register' && $cate...

Castle Fluent Registration: can't override a type registered by "AllTypes" with "Component"

Inside a DLL, we've defined two classes ("Class1" and "Class2") which inherit from an interface ("IInterface") and a base class ("BaseClass"). We're using the Castle Windsor's Fluent Registration API ( http://using.castleproject.org/display/IoC/Fluent+Registration+API ) to automatically register all the classes inheriting from "BaseClas...

couchdb design views, updating fields on doc creation

Is it possible to have couch update or change fields on the fly when you create/update a doc? For example in the design view.... validate_doc_update: function(newDoc, oldDoc, userCtx) { } Within that function I can throw errors like: if(!newDoc.user_email && !newDoc.user_name && !newDoc.user_password){ throw({forbidden : 'all fi...

printed registration key guidelines, standards, best practices?

I am looking to implement a simple registration key system. There will be printed codes, and we'd like users to type their code into our system. This code will be used around the world, and we want to avoid any problems with confusing codes. We're already doing the following: using numbers and upper case letters leaving off 2 and Z,...

About Joomla Registration Form

I m using Joomla template... and i want to to register new user in it, but the problem is that whenever i create a new account and input all the fields and click on submit button the whole form is reset and no registration take place so help me out of this problem... ...

How do I create custom fields like mobile number in customer registration form without modifying magento core files?

How do I create custom fields like mobile number in customer registration form without modifying magento core files? I tried but the mobile number is not saved in the DB I override the Mage_Customer_Model_Entity_Setup class with Myown_Mage_Customer_Model_Entity_Setup by creating Model/Entity/Setup.php in my modules folder and added...

GWT Entry point Configuration

HiI have to create one login module using GWT with RPC with the functionality of login, registration and forgotPassword. Login is working fine. Now i have to proceed for registration and forgot password but i have in trouble to configure entry point. In my login page i have created hyperlink "REGISTER" and "FORGOT PASSWORD" and when i wi...

What is the best way to ban/block users with Devise for Rails?

I'm using Devise for authentication in my rails app and I'd like to be able to block certain accounts and prevent users from reregistering with a blocked email. I'm just not sure what the best way is to go about it. My first thought was to override the sessions and registrations controllers to check the model for a user with a blocked ...

devise simple registration form

The user fills in the form his email and password. After submiting the form, the user recieves an email, containing a activation link. After clicking on that link, he comes to an form, where he can fill out the rest of his data (login, gender, age and so on...), before he does'nt correctly fills out the form, he is not allowed to log in....

Autofac with FluentValidation in MVC2

I'm getting a 'not registered error' during execution in the ValidatorFactory.CreateInstance call. It appears the type being sent into the method is correct. My registration code: ... builder.RegisterAssemblyTypes(assembly).Where(t => t.Name.EndsWith("Validator")).As<IValidator>(); builder.Register(d => _containerProvider).As<IContain...

AS3 Change registration point of a MovieClip to be center of width and bottom

Hello! I have a MC in an AS3 animation and I want to increase its height from bottom to top which would mean that the registration point should be bottom of the MC and center of width (horizontal center). How can I do this please? Thank you. ...

Registration Free Com and dll manifests

I'm trying to setup registration free COM, but have a slight problem in that I another COM object may be the client. App.exe----->COM Server/Client dll(registered or not)-------->COM Server DLL (NOT Registered) My questions is, is it possible to create a manifest for the second dll (COM Server/Client dll)? I do not have control of the ...

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 anybody to get their hands on the private key.) Whenever the program is purchased, the se...

Facebook Connect: capturing user data with django-profiles and django-socialregistration

Either my google searching has completely left me or there's hardly any documentation/tutorials for django-socialregistration. Too bad, because it seems like a nice enough app. Through some trial-and-error, I have managed to get it mostly running on my site. My question, using django-socialregistration how do I request permission for t...

Build Servers, build agents, com registration and Windows 7 permissions

I am trying to build a continuous integration server on a Windows 7 machine. I can run the msbuild script cleanly on that machine but when I attempt to run it via a build agent the registration of certain COM (.NET and c++) components fail seemingly to do with write permissions to the registry. I have turned off UAC but it makes no diffe...

Socialregistration: how to make a user-info page that works for both facebook and openid

hi, socialregistration works pretty well but the readme file indicates only how to make a website where openid and facebook users can login. Now how do you: retrieve basic inforamtion like email and name with facebook? retrieve basic inforamtion like email and name with openid? implement a user-info page (like when you click on your ...