View previous topic :: View next topic |
Author |
Message |
dreamerzmu -
Joined: 03 Dec 2004 Posts: 1
|
Posted: Fri Dec 03, 2004 3:30 pm Post subject: help me how to setup up MSSQL Server |
|
|
i make server MUONLINE - to make site. and i hav problem
Fatal error: Call to undefined function: mssql_connect() in C:\Program Files\Abyss Web Server\htdocs\home.php on line 9 |
|
Back to top |
|
 |
admin Site Admin
Joined: 03 Mar 2002 Posts: 1334
|
Posted: Sat Dec 04, 2004 2:08 pm Post subject: Re: help me how to setup up MSSQL Server |
|
|
dreamerzmu wrote: | i make server MUONLINE - to make site. and i hav problem
Fatal error: Call to undefined function: mssql_connect() in C:\Program Files\Abyss Web Server\htdocs\home.php on line 9 |
You should install the MSSQL module in PHP to solve this problem.
Download the Windows Zipped Binary package (the full package) of PHP from http://www.php.net . Extract the file php_mssql.dll from it and copy it in your PHP installation directory (where your php.exe or php-cgi.exe is.)
Open php.ini and change the value of extension_dir to
Code: | extension_dir = c:\php\ |
Of course change c:\php\ with the correct PHP directory on your computer.
You should also locate in php.ini the line:
Code: | ;extension=php_mssql.dll |
and uncomment it (remove the ; ):
Code: | extension=php_mssql.dll |
Save php.ini and retry your script. |
|
Back to top |
|
 |
|