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!

Web Error of WebZone

Joined
Mar 14, 2010
Messages
504
Reaction score
26
Helo,

Sorry i forgot to fix this and i follow some tutorial here but no luck.

I'm using windows 10
SQL Server 2019
Xampp Latest as of now

Already done setup the ODBC
Planning to run k5 files.

$SQLServer['Name'] = "1111111\xxxx"; //Nombre delservidor.
$SQLServer['ID'] = "1111111"; //Nombre delusuario.
$SQLServer['Password'] = "1111111qW"; //Contraseña del servidor.
$SQLserver['DBUserLogin'] = "UserLogin"; //Nombre de la base de datos donde se almacena la información de los usuarios de las cuentas.
$SQLserver['DBTantra'] = "Tantra"; //Nombre de la base de datos donde se almacena la información de las cuentas.
$SQLserver['DBBillcrux'] = "billcrux_phil"; //Nombre de la base de datos donde se almacena la información de los taneys.

that is the code of my config.php
 

Attachments

You must be registered for see attachments list
Custom Title Activated
Loyal Member
Joined
Mar 26, 2012
Messages
1,465
Reaction score
130
This has been answered a thousand times but, I will reiterate what needs to be done. The mssql_pconnect is an outdated system and must be enabled for use with your plugins for use with xampp. If memory serves me correct you need 1.7.3 for the last version that supports this protocol else your other choice is to simply update the webtemplate to a new protocol version such as odbc_connect or sqlsrv_connect.
 
Upvote 0
Initiate Mage
Joined
Jan 30, 2020
Messages
4
Reaction score
0
i got this error, i've follow all putting the .dll and delete ; from php file. but no luck. still got

Warning
: mssql_pconnect() [
]: Unable to connect to server: DESKTOP-patter\KART in
C:\xampp\htdocs\web\config\config.php
on line
5

the line 5 is "
if (!($link=mssql_pconnect("DESKTOP-patter\KART","sa","123456")))"



upon check phpinfo and search of mssql and the attachment shows,

is there something wrong on the said attachment, if some changes? how and what.
 

Attachments

You must be registered for see attachments list
Upvote 0
Back
Top