Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Release]Web Register

Newbie Spellweaver
Joined
Dec 4, 2007
Messages
57
Reaction score
2
I have made this Web Register, and i am posting here to the peoples that still dont have.

Obs.:
Make Auto-Incremet in:
Table = dbo.Users_Master
Colum = UserUID

i dont remember the Script to Alter, but look this informations:
Enter in Modify Table (Design Tablhe):
Is Identity --> Yes
Identity Seed --> 1
Identity Increment --> 1 (Number to be incremented by i.e if the previous number is 2 and identity increement is next number would 2+1)
 

Attachments

You must be registered for see attachments list
Last edited:
Newbie Spellweaver
Joined
Jun 11, 2006
Messages
44
Reaction score
4
This script hasn't been secured against injections. I suggest adding the following to the processor.php file to help secure it.

PHP:
//All _GET, _POST, _COOKIE, _REQUEST values are trimmed, stripped and escaped.
$_GET = array_map('trim', $_GET); 
$_POST = array_map('trim', $_POST); 
$_COOKIE = array_map('trim', $_COOKIE); 
$_REQUEST = array_map('trim', $_REQUEST); 
if(get_magic_quotes_gpc()): 
    $_GET = array_map('stripslashes', $_GET); 
    $_POST = array_map('stripslashes', $_POST); 
    $_COOKIE = array_map('stripslashes', $_COOKIE); 
    $_REQUEST = array_map('stripslashes', $_REQUEST); 
endif; 
$_GET = array_map('mysql_real_escape_string', $_GET); 
$_POST = array_map('mysql_real_escape_string', $_POST); 
$_COOKIE = array_map('mysql_real_escape_string', $_COOKIE); 
$_REQUEST = array_map('mysql_real_escape_string', $_REQUEST);
 
Experienced Elementalist
Joined
Oct 26, 2007
Messages
296
Reaction score
0
after i set the UserUID into auto increment
 

Attachments

You must be registered for see attachments list
Junior Spellweaver
Joined
May 14, 2011
Messages
135
Reaction score
3
guide to properly work this files any updates???
 
Back
Top