As it was pointed out by Jeff, MSSQL server is a Microsoft product thus only works on Windows.
The guide i posted back in september provides you with the means to connect to a MSSQL server from php on a Fedora core 4 OS which is not supported anymore and yum did not work for me.
In the meantime I installed CentOS 5 and I made it work like this:
1. Install freetds:
2. Edit the php configuration file (i have apache 2 and php 5, change acording to your configuration):
Code:
mkdir /usr/local/directadmin/custombuild/custom/ap2
cp /usr/local/directadmin/custombuild/configure/ap2/configure.php5 /usr/local/directadmin/custombuild/custom/ap2
edit and add this line to /usr/local/directadmin/custombuild/custom/ap2/configure.php5:
(Note: if you write this at the end of the file make sure you remove "" and add it to the line before it)
3. Rebuild php:
Code:
cd /usr/local/directadmin/custombuild
./build clean
./build update
./build php n
Again, this does not install MSSQL server on your Linux host (that is only posible with Windows), but merely provides you with the means to connect to an external MSSQL database.
Hope this helps.