Register page

delete the ";" from
Code:
;extension = php_mssql.dll
so it looks like
Code:
extension = php_mssql.dll

Hey thanks but watch the spaces there are not any by the=
omg still wont work i must be retarded and one want to team viewer or give a explain like crazy XD
I could have the server wrong to idk but if you want to team viewer me which i kinda only trust the topic poster idk why but ya
 
Last edited:
Woot Thanks!!! Working Perfectly
take a look
 
Last edited:
When I try and load the page I get a tan screen saying: Unable to connect or select database!

I'm pretty sure this is due to the fact I have no password for my SQL server and that I'm probably trying to indicate there is no password wrong. Any ideas?
 
I have this " Unable to connect or select database! "

I'm already change host , user , pass.

and enable mssql already can check here

how i can fix this ?
 
Im getting.

Code:
Fatal error: Call to undefined function mssql_connect()
 in C:\wamp\www\register.php on line 132

this is my line 132

Code:
$connection = mssql_connect('COMPUTER', 'sa', ' '); //Change YOURHOST and YOURPASSWORD

i do not have a password set for my mssql as it is a test server for me only.. any idea's? if not ill just redo my mssql with a pass
 
Im getting.

Code:
Fatal error: Call to undefined function mssql_connect()
 in C:\wamp\www\register.php on line 132

this is my line 132

Code:
$connection = mssql_connect('COMPUTER', 'sa', [B]''[/B]); //Change YOURHOST and YOURPASSWORD

i do not have a password set for my mssql as it is a test server for me only.. any idea's? if not ill just redo my mssql with a pass

No space for the password. Also, you need to download the mssql extension for php.

Some idiot just tried to sql inject me with the string I usually use. (Alex from CyclopsFlyFF) He'll enjoy a nais present. <:
 
No space for the password. Also, you need to download the mssql extension for php.

Some idiot just tried to sql inject me with the string I usually use. (Alex from CyclopsFlyFF) He'll enjoy a nais present. <:

lol there wasnt a space there.. but for no password do i keep it empty if i dont have a password?

and i already removed the ; from that line of code.. still having the problem..

another question
is my host the name of my computer or my ip? or is it the common localhost?



so i started getting this msg
Code:
The MSSQL extension is not enabled on your PHP. Enable it on your php.ini and try again.
and this is what i have enabled on my php.ini's both of them that i found
Code:
extension=php_mbstring.dll
;extension=php_ming.dll
extension=php_mssql.dll
extension=php_mysql.dll
extension=php_mysqli.dll
Code:
extension=php_mbstring.dll
;extension=php_ming.dll
extension=php_mssql.dll
extension=php_mysql.dll
extension=php_mysqli.dll

and this is what i have for the code
Code:
	$MD5Code = "kikugalanet"; // Your Neuz MD5 Code
	$dbAddr = "5.218.168.71"; // Your MSSQL Host IP
	$dbName = "ACCOUNT_TBL"; // Your Account Database
	$dbUser = "sa"; // Your Database user
	$dbPass = "****"; // Your Database User password
**** = my pw
 
Last edited:
Back