Error 123 for php.ini

yuriz

New member
Joined
Sep 27, 2008
Messages
1
Hello,


I try to resolve a mistake that leaves me without my website how do I resolve it?


Error #123
Loading php_mssql.dll Falied!
Please Enable php_mssql.dll in ur php.ini


Thank you for your answers
 
Hello,


I try to resolve a mistake that leaves me without my website how do I resolve it?


Error #123
Loading php_mssql.dll Falied!
Please Enable php_mssql.dll in ur php.ini


Thank you for your answers
Since Directadmin doesn't run on servers running Windows, I'm guessing you're using linux. That means, in your php.ini file, all lines loading .dll files like this should be commented out:
Code:
extension=php_mssql.dll
should be:
Code:
;extension=php_mssql.dll
with the semicolon at the front.
 
Unless of course the original poster isn't running DirectAdmin, and is using Windows, in which case this is the wrong forum.

Jeff
 
sorry for call back old topic ....

i've remove the semicolon in front of
Code:
extension=php_mssql.dll
and restart the apache ... even my server ....

but my php still not give me the error .....

my server is CentOS 5.5 Final 64bits ...
 
so do i need to change the extension from .dll to .so ?? or need to install ??
it is possible to have linux support MSSQL connection??
 
Last edited:
i've follow how to install mssql in LQ guide

Code:
http://www.linuxquestions.org/questions/linux-server-73/how-to-enable-mssql-on-linux-589956/

but still cannot find where mssql.so file ..... even i try use command locate ..... still no sign of mssql.so file .....
 
On most servers the locate command won't find a new file until the next night's cron.daily has been run.

Use
Code:
# find / -name mssql.so
instead.

Jeff
 
Back
Top