Valhalla Legends Archive

Programming => Web Development => Topic started by: warz on June 19, 2006, 12:26 PM

Title: How should I make my email verification?
Post by: warz on June 19, 2006, 12:26 PM
I'm creating one of those scripts that verify your email address before youre account becomes active when registering, by sending an email to the address you specify.

I'm thinking though - when a user tries to register, what I will do is basically create their account but flag it "unactivated". Ill also store an entry in a different sql table with an 'id' value representing their account, and a 'code' value. Ill send these values in an email to the supplied email (in URL format, much like most other scripts like this do).

For the user to activate, they much properly access my php script and supply their 'id' value with their correct 'code' value. Then, I will flag their account 'activated', delete their table entry in the 'waiting to be activated' table and their account will be fully registered.

What should I base the 'code' value off of, though? I was thinking, since only 1 email may be registered with the same name, I could make the code value the first 10 digits of the MD5 result of their email address. Something similar to...

if($suppliedcode == substr(md5($emailaddress), 0, 10)) then activate!

What do yall think?
Title: Re: How should I make my email verification?
Post by: dxoigmn on June 19, 2006, 02:02 PM
It should be random, otherwise people can create accounts with fake email addresses if they figure out your scheme.
Title: Re: How should I make my email verification?
Post by: rabbit on June 19, 2006, 04:53 PM
I did something else.  The file is a class, which is a loaded as a module by a sytem I wrote for my senior project.  It works well, but there's some requirements in there (like some of my other classes), though they shouldn't be hard to replace. Take a look:

http://www.liquid-server.org/register.phps

If you want the full site source, talk to me.

[edit]
This will maybe help:
http://www.liquid-server.org/register.form.tpl.phps
Title: Re: How should I make my email verification?
Post by: warz on June 19, 2006, 07:27 PM
Meh, it's difficult for me to look at other peoples code sometimes - and your code is just confusing to me. I think it's a little more than what I'm needing to do but I appreciate the willingness to share. I managed to get my method running and I think it'll work out fine.
Title: Re: How should I make my email verification?
Post by: rabbit on June 20, 2006, 08:16 AM
O well.  The MIME headers for the email are down near the bottom, if you need them.
Title: Re: How should I make my email verification?
Post by: Warrior on June 20, 2006, 09:38 AM
/me smiles inside
Title: Re: How should I make my email verification?
Post by: rabbit on June 20, 2006, 12:18 PM
Glad I could make you happy, Warrior.
Title: Re: How should I make my email verification?
Post by: Banana fanna fo fanna on June 22, 2006, 03:32 PM
Rabbit, that code is downright silly.
Title: Re: How should I make my email verification?
Post by: rabbit on June 22, 2006, 05:20 PM
Hey, it works and I like it.
Title: Re: How should I make my email verification?
Post by: Banana fanna fo fanna on June 23, 2006, 11:01 PM
Good point. Still silly.
Title: Re: How should I make my email verification?
Post by: Warrior on June 24, 2006, 09:14 AM
Quote from: Banana fanna fo fanna on June 23, 2006, 11:01 PM
Good point. Still silly.

/me frowns at BananaFFF

Actually lol I think it was based off my original module system somewhat but rabbit-ified. I thought  it was a good idea for a CMS I was developing at the time. Of course now instead of creating an interface for modules to communicate with I pass them a reference to the core and have allowable functions monitored on a by-caller basis in PHP.  I think most of this is a result of me overcomplicating everything when I was a novice PHP coder.
Title: Re: How should I make my email verification?
Post by: rabbit on June 24, 2006, 11:16 AM
It is based (loosely!) off of DTCMS's module system, and yes, I did modify it heavily.  I didn't have a lot of time to write everything, so I went with a basic system I know and had and implementation for.  If you STILL think its silly, go read littlegamers to find out what silly really is.  Good day.
Title: Re: How should I make my email verification?
Post by: Banana fanna fo fanna on June 25, 2006, 12:23 AM
Silly because it's over-engineered. However, "it works well for me" is ALWAYS a certainly reasonable reason for taking a given choice of action.
Title: Re: How should I make my email verification?
Post by: rabbit on June 25, 2006, 06:52 AM
Yes.  It is overengineered.  But it's also alone.  Looking at the whole site makes it less overengineered looking (though I suppose it all still is).
Title: Re: How should I make my email verification?
Post by: warz on June 25, 2006, 02:36 PM
i just use php's emailing functions. it's basic, and simple.
Title: Re: How should I make my email verification?
Post by: PaiD on June 26, 2006, 11:56 PM
Warz: Why is your site forbidden?
Title: Re: How should I make my email verification?
Post by: Joe[x86] on July 02, 2006, 11:20 AM
God's gift to the world!
function generateRandomString($length) {
$values = array("a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o",
"p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G",
"H", "I", "J", "K", "L", "M", "N", "O","P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y",
"Z", "1", "2", "3", "4", "5", "6", "7", "8", "9", "0");
$random_string = "";
for($i=0; $i < $length; $i++) {
$random_string .= $values[mt_rand(0,61)];
}
return $random_string;
}


When creating the code, just call generateRandomString(32). The easiest way to do this would be to store it in the database until they try to activate, because any way that you could create the same string twice without storing it could be guessed and cracked.
Title: Re: How should I make my email verification?
Post by: Kp on July 02, 2006, 02:29 PM
It'd be shorter to write@values = ("a" .. "z", "A" .. "Z", "0" .. "9");
Title: Re: How should I make my email verification?
Post by: rabbit on July 02, 2006, 03:45 PM
PHP doesn't have that functionality, but close.  Use the range() function.
Title: Re: How should I make my email verification?
Post by: warz on July 05, 2006, 08:35 AM
Quote from: Savior on June 26, 2006, 11:56 PM
Warz: Why is your site forbidden?

Sorry, it's currently at www.rafm.org/en/ - i didnt want people messing with it while it was being constructed. It's got a little bit of functionality now, but it's still missing the main purpose. Currently you can register, login and create a group, join a group and view group information.