• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[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