registration

Managing Unregistered User Posts by Screening

I am considering allowing users to post to my site without having them register or provide any identifying information. If each post is sent to a db queue and I then manually screen these posts, what sort of issues might I run into? How might I handle those issues? tia ...

How could I record new domain names as they are registered?

The website Domain Daily provides a list of new domain names. I have a client who would like to implement similar functionality in-house, for semi-real-time tracking of new registrations, but doesn't know how to go about it. Instinctively, I'd be thinking some sort of service interacting with DNS, WHOIS, or maybe even becoming an offic...

How to debug regsvr32 post-compile DLL registration exception?

I'm using Visual Studio 2008 (on Windows 2003 Server / 32 bit) to compile a library and after the DLL is produced the "Custom Build Step" -> "General" executes a command line: regsvr32 /s /c "($TargetPath)" which generates the exception: An unhandled win32 exception occurred in regsvr32.exe [212]. This throws up a debug sessi...

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. ...

CoRegisterClassObject never works...

Recently I've tried to solve several different issues with CoRegisterClassObject (because its introduction on MSDN looks pretty nice) - unfortunately it never works for me. Am I doing something wrong? Here's what I've tried: (1) Use CoRegisterClassObject for proxy/stub objects: I have a downloaded COM server (in DLL) with its proxy/stub...

Registration of software

Hello, What are the different ways to register Intellectual Property (Commercial Software)? Thanks ...

Registration-free COM not working on Windows Server 2003

I have created the necessary manifests for my COM server DLL and a client application to work registration-free in Windows XP. I've tested all kinds of combinations (with and without a registration) and in all cases the client application sees the side-by-side version of the library if the manifests are present, and the registered one i...

Should site registrations be stored in a separate table to active users?

I'm wondering about best practices for user registration. I'm leaning towards storing site registrations in a separate registrations table and then once the signup has been confirmed by email transferring the data over to the users table. The benefit to this would be that reads from the users table are not cluttered with never activate...

References on best practices for registration keys/access codes format

I am developing an online site to which access will be sold at college bookstores. Students will purchase a card at the bookstore with an access code that they may then use to register online at our site. I want to make the code as user friendly as possible. I personally hate registering for a product and having to type in a registrat...

Castle Windsor: How can I update a components registration

If I have defined in config: container.Register( Component.For<X.Y.Z.IActivityService>() .ImplementedBy<X.Y.Z.ActivityService>() .ServiceOverrides(ServiceOverride.ForKey("Listeners").Eq(new [] { typeof(X.Y.Z.DefaultActivityListener).FullName })) .LifeStyle.Transient ); and I wish to extend this c...

Where does an application store "I'm deactivated" on Windows?

Applications often have registration keys. It can arguably be placed in a file or in the registry. Sometimes, an application is deactivated by entry of another key, or the passing of a date, etc. Where can one safely store such information about an application be deactivated? A file isn't the answer; a backup copy can be restored to d...

DNN Problem: Dynamic Registration, Paypal, and User Creation

Hi, I'm having a problem with the module Dynamic Registration for DNN. The module is set up with form completion events in such a way that a user gets redirected to paypal and on completion of payment a user gets created and an email is sent out. I also have it set up so that an email gets sent out on completion of payment, just to te...

AquaticPrime "Regular" License?

Hi Everyone: I am looking at using AquaticPrime for my key generator for a Cocoa shareware app. For those of you who don't know about it, you can check it out here: http://aquaticmac.com/. However, I am running into a problem when I attempt to implement it. I don't want my users to have to copy and paste a whole dictionary into my ap...

Registration Codes/Server Verification & Joomla

This question can be broken up into a couple of parts: What is the best way to create a registration key for a product in PHP (ie. a person purchases a PHP program and after payment receives an activation key) I want to be able to store the registration keys on my server (Joomla) and associate the key with my existing users. Then the P...

sending username and password through email after user registration in web application

What is your opinion on sending the username and password to their email address when they register on our website..this way if they forget the password in the future, they can look it up in their email...also we wont have to implent the forget/reset password scenario (we are close to release).. is this approach safe enough? My second...

What information to save to a cookie for future account authentication?

So I'm building my first ever website with user accounts. What data should I store to the cookie so the user can prove that they are in fact that user? Right now when the user logs in I save the user ID, the username, a randomly generated session ID and the hashed and salted password for future authentication. I'm not sure if I should be...

Saving profile with registration in Django-Registration.

In Django-Registration it says you can save a custom profile when you save a user. But I have no idea what the documentation is asking me to do. Here is what they say: "To enable creation of a custom user profile along with the User (e.g., the model specified in the AUTH_PROFILE_MODULE setting), define a function which knows how to cre...

Castle Windsor: Is there a way to override a component Id?

I have the following bit of registration code: Component.For<IPublishingService>().ImplementedBy<UseStoredProcedureToPrintService>(), Component.For<IConfirmationDialog<AutomatedTransaction>>().ImplementedBy<ShipmentConfirmationDialog>().Named("ShipmentConfirmationDialog"), Component.For<IConfirmationService<AutomatedTransaction>>().Impl...

Where should I store my application's "activation" key?

I've written an application and I'd like to add a registration key/serial number to it (I'm big on minimum inconvinience - ala #4 at this Eric Sink article). My question is about where to store the "activation" once the application has been registered. As I understand it, I have a trade-off between storing the key in a public place, wher...

developing a registration key for a vb.net application

i developed a very simple vb.net application and i need a way for every user to verify that they have paid for it. i would like the simplest method possible. it will be an off-line registration. I am actually looking for a way that I can program this easily myself, and am not interested in third part solutions. ...