![]() |
Email verification system discussion - Printable Version +- Mirage Source (https://mirage-engine.uk/forums) +-- Forum: Mirage Source (Nostalgia) (https://mirage-engine.uk/forums/forumdisplay.php?fid=61) +--- Forum: Archive (2006-2011) (https://mirage-engine.uk/forums/forumdisplay.php?fid=18) +---- Forum: Source Code Development (https://mirage-engine.uk/forums/forumdisplay.php?fid=51) +----- Forum: Mirage Source 4 (Visual Basic 6) (https://mirage-engine.uk/forums/forumdisplay.php?fid=44) +----- Thread: Email verification system discussion (/showthread.php?tid=2800) |
Email verification system discussion - GIAKEN - 14-05-2009 I have some ideas for email verification... On registration you could enter your email The server would get that email, create a randomly generated code like 33ftt64s or whatever and take a PHP page you've got and rename it to that (then rename it back for other use), upload it to your FTP, send an email like "Please verify registering GIAKEN by clicking this link: www.whatever.com/randomcode.php" Then you click on it, the PHP page will send a packet to your server. In the server you would have a Verifying folder which will store files that were created in place of actually creating the account files...like 3rwer43.ini and you would get the code from the PHP page's packet. The server will then get the name and password from that verifying file and make the account. If the server is off the PHP page will simply say "Failed. The server is offline!" else it will say "Success! You are now verified!" Wouldn't be hard to do for me (except the PHP part...I don't know PHP). Not sure how long it would take to do it... The player wouldn't need any extra DLLs or anything...the server just needs it. EMail: http://www.freevbcode.com/ShowCode.Asp?ID=109 FTP: http://www.vbforums.com/showthread.php?t=278027 Re: Email verification system discussion - Tony - 14-05-2009 If you do that then you shouldn't rename anything. Just doing how websites do it, whatever.com/verify.php?code=23j32l4j0f Re: Email verification system discussion - GIAKEN - 14-05-2009 Oh yeah... Well I don't know anything about PHP...but that would be a lot smarter. Re: Email verification system discussion - Jacob - 15-05-2009 If you wanted to do it without the PHP. You could send the code to the user, then in the client you have a 'verify' section that you have to enter the code. The code gets sent to the server and if it works, you get verified. Re: Email verification system discussion - GIAKEN - 15-05-2009 Yeah I wasn't thinking about that part ![]() I'll probably make a tutorial soon. Re: Email verification system discussion - Jack - 15-05-2009 Nice to see my tutorial helped people with code and ideas. ![]() Re: Email verification system discussion - Jacob - 15-05-2009 You could do that easily if you changed the backend data storage to MySql. Re: Email verification system discussion - Tony - 15-05-2009 How hard is it to learn php? Re: Email verification system discussion - Jack - 15-05-2009 Not extremely insane, but just picking up the basics helped me with web design, But i know alot of HTML before i did that. But HTML AINT a extreme language to learn. |