how to make a simple register page

try this..


i think the simpliest registration, password recovery, change password webpage..
hehehe.. i hope it can help..
just read the read1st.txt
 
Upvote 0
thnx!
how to config it sir or where i need to put the files u have given to me

php websites runs on apache..
if you are running windows, you can use xampp, or wampp..
this sample website doesnt run on IIS..
if you dont understand my language..

do this:
1. Learn about websites.
2. Try setting up after learning.
3. Then you can configure.

i dont mean to offend you but if you are a beginner,
please go to the right section of this forum..
thanx.. :)
 
Upvote 0
Why i have this????



Warning: mssql_connect() [function.mssql-connect]: message: Login failed for user '(null)'. Reason: Not associated with a trusted SQL Server connection. (severity 14) in C:\AppServ\www\reg\config.php on line 9

Warning: mssql_connect() [function.mssql-connect]: Unable to connect to server: localhost in C:\AppServ\www\reg\config.php on line 9

Warning: mssql_select_db(): supplied argument is not a valid MS SQL-Link resource in C:\AppServ\www\reg\config.php on line 10
 
Upvote 0
Why i have this????



Warning: mssql_connect() [function.mssql-connect]: message: Login failed for user '(null)'. Reason: Not associated with a trusted SQL Server connection. (severity 14) in C:\AppServ\www\reg\config.php on line 9

Warning: mssql_connect() [function.mssql-connect]: Unable to connect to server: localhost in C:\AppServ\www\reg\config.php on line 9

Warning: mssql_select_db(): supplied argument is not a valid MS SQL-Link resource in C:\AppServ\www\reg\config.php on line 10

ok sorry..
remove this lines..
$msconnect=mssql_connect("$host","$alogin","$apass");
$msdb=mssql_select_db("$db",$msconnect);

i think it is on line 9 and 10 on you config.php..

thanx.. :)

edit: repacked..
already deleted those lines..
for those who downloaded it before this date/time..
download again..
it is now updated..
 
Last edited:
Upvote 0
tested : got this on opening index.php

0) die("Aha..!! Please dont do anything stupid..!!!
Invalid Character Detected
NO HACKING PLEASE!

IP Address: $ip LOGGED! and we will make favorable action to this..!!

and i didn't even do anything yet.
 
Upvote 0
tested : got this on opening index.php

0) die("Aha..!! Please dont do anything stupid..!!!
Invalid Character Detected
NO HACKING PLEASE!

IP Address: $ip LOGGED! and we will make favorable action to this..!!

and i didn't even do anything yet.

it has trappings..
if the site found words like "DROP","SET","UPDATE","drop","set","update"..
it will automatically kill the connection to your sql..
if you are using firefox/mozilla, try download the addons called tamper data..
you can see what data you are sending to your website.. :)

or if you want to remove the trappings..
just delete the lines from 16 to 26 on index.php
:)

hmm.. try reconfigure again.. it runs on my webserver smoothly..
 
Last edited:
Upvote 0
ok sorry..
Remove this lines..
$msconnect=mssql_connect("$host","$alogin","$apass");
$msdb=mssql_select_db("$db",$msconnect);

i think it is on line 9 and 10 on you config.php..

Thanx.. :)

edit: Repacked..
Already deleted those lines..
For those who downloaded it before this date/time..
Download again..
It is now updated..

thx :* work!!! :d
 
Upvote 0
Couldnt really see whats causing it. already used the tamper addon. anyway, it must be my webserver type. ill cross check later. thank you for the release. its the first php release here with other useful functions. (and if it still persists, ill simply remove it or revise the trap code).
 
Upvote 0
Aezeroth, could you amend your regpage, because i noticed that the stored procedure includes the premium account data which you failed to include in yours. as a result all new accounts have no premium field entry, resulting in failure of all triggers related to it. thank you.
 
Upvote 0
Aezeroth, could you amend your regpage, because i noticed that the stored procedure includes the premium account data which you failed to include in yours. as a result all new accounts have no premium field entry, resulting in failure of all triggers related to it. thank you.

let me answer that.. coz im the one responsible for this release..
(was using Aezeorth's account posting this release)

the reason why we did not put up premium account when creating new account is because of our server setting.. (Click Here)

this is only a simple test page..
with 3 functions, Register - Recover Password and Change Password..

You have to put up another conditions in your query if you want to make
all the newly created account into premium...

:)

Have Fun..
 
Upvote 0
Aezeroth
i try use u script. AFter i installed and configure it i scan it for hacking atempts and found:
1. 3 cookies manipulations.
2. 12 SQL inj
3. 76 XSS

u can fix sql inj by add spec symbols to badwords ;))
 
Last edited by a moderator:
Upvote 0
Back