registration

Windsor-Castle: Register All Types in assembly using config file

Hi Every one in code i can do some thing like this: container.Register(AllTypes.FromAssemblyNamed("AssemblyName")); can i do the same thing using Configuration file "Windsor.Config"??? ...

Overriding the user registration form in Drupal 6

I want to be able to customise the user registration form in Drupal 6 I have found thousands of tutorials that show me how to override the structure in which you can output the form as a whole, but I want to move form elements around etc and I cant quite seem to see the best way to do this ...

register dll - GUIDs not found in registry

i've got a c#-dll and registering via regasm tells me success, but the GUIDs have not been added to the registry and therefore, the component can't be used anywhere. and i've got simply no idea why :( class attributes: [ProgId( "blup" )] [ClassInterface( ClassInterfaceType.None ), ComSourceInterfaces( typeof( blap ))] [Guid( "0CFEF92B-...

Event Registration

How can I create a site like http://www.eventbrite.com/ in drupal. If its not possible in drupal what should I probably use. More specifics -- Users can add their own events, add pricing. Out of that pricing the website can keep a certain % say 5%, when users purchase tickets. The commission can be on per event basis and cannot be ch...

Ways to protect your software (serials etc)

I'm wondering what is the easiest way to protect the software I write. I'm developing a software package to sell, but don't want people to be able to just install it and use it without paying. The applications are written using C# incase there is any particularly easy way to do this with the .Net framework. I'm asking more as an in...

Example sites that use LinkedIn's API equivalent of 'Facebook Connect'?

Anyone know of any example sites that use LinkedIn's API as sign-up/registration service... similar to how 'facebook connect' is used. Can't seem to find many, if any, examples out there. I wonder why. Must be a good reason for the lack of sites adopting this method of authentication. ...

How to bring in the login & reg forms into my wordpress theme?

I have been doing WordPress themes for a while, but the straight forward ones. Now this new client wants a theme that has the login and reg form in the theme with a lightbox. I have previously seen login forms included in themes so I agreed to that and told him that the reg form cannot be done. Then I saw modernman. They've managed to br...

Simple Liberty reserve PHP script for registration form

Hi I'm designing a script for someone that wants to have an online registration form where people can sign up for a certain event. There is also a cost to attend the event. So I need to have something where they can pay online. liberty reserve seems like the easiest way to do this. Can somebody show me how to design a script that forward...

Is email harvesting from login/signup/forgot forms a genuine concern?

I'm building a membership system keyed by email address. I.e. Email/password. As I do it there is always this niggling concern in the back of my mind that a spammer is going to bot my forms and use them to verify email addresses somehow. For example, if I put an ajax email checker on the registration form which goes off and asks the se...

getting annoying error in register action. unexpected T_STRING

Hi folks, setting up my authentication, in my users_controller i have a register action listed below. I'm getting an error at line 20 which is if (!empty($this->data)) { The error is: syntax error, unexpected T_STRING Here is my entire users_controller: <?php class UsersController extends AppController { var $name = 'Users'; va...

Form processing causing apache to crash??

I use the following code to register users on my site. The problem is that when a user registers apache doesn't respond and crashes. Is there a break in my code or something I am doing wrong???? <?php include ('../includes/db_connect.php'); $firstname = $_POST['firstname']; $email = $_POST['email']; $username = $_POST['username']...

Automated registration email

To be short - User registers for the site An email is sent to the user confirming their registration I am using : Asp.net 3.5(C#) Sitefinity as a CMS MS SQL 2008 server r2 My question is what is the best way to automatically send the email? Should it be done in ASP.net or as a database trigger using something like xp_sendmail ...

password salting - never matches!

I'm having difficulty figuring out why user password hashing is not working. The way I do this is the normal method, where upon registration I create a randam salt and combine with password and store, but when I try to match the passwords for the login, they're failing :( <?php class Model_users extends ModelType_DatabasePDO { //... ...

Invoking a COM Server Dll on a 64-bit Windows Machine

Hi! I'm having some 64-bit issues. Here's the scoop: I have 32-bit COM exe (written in FoxPro). This exe invokes a 32-bit COM dll (also written in FoxPro). In the 32-bit Windows world, the dll is placed in C:/Windows/System32 directory, registered with C:/Windows/System32/regsvr32.exe and all is well. The exe can be launched and an...

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 found bits and pieces of how one would do the good ole' stackoverflow registration using: ...

very simple mechanism of registration

Hello, I'd like to make a very simple mechanism of registration for my application. Nothing fancy, just need to make sure that the user won't simply uninstall my product and then install it again when the free trial ends. I was thinking of putting the information in HKLM\Software\Microsoft\Windows\Uninstall under a subkey like {ECE6CA...

How can I test if a COM type is registered?

Say I've got a load of COM types and I'd like to check if a particular type has been registered. I can use Activator.CreateInstance to actually try and create the class, but I was wondering if there's a simpler way actually check in advance if the class is actually registered. I'd prefer not to go to the registry directly - I'm looking...

Setting Up a Simple Retreat Registration w/ PayPal API and PHP

So I'm running out of time on this project and I posted here in hopes that someone can help me. Backstory There's a church retreat coming up and I'm in charge of making the website. The Meaty Info On the site there's a simple registration form on the page that has some basic information (I have to add fields for Location, Phone Numbe...

customizing user registration page with custom module or contrib module

In PHP I can have a very nice registration system in less than a day with ajax username availability checking, custom fields, custom validation and everything to think of. In drupal, drupal just stands in the way of everything good. I'm trying to customize the registration page as follows add extra fields in the registration form cha...

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 number between 0-1000. Since there are only 1000 options, and their MD5 hashes are known,...