我们只是从旧的Windows Server转移到新的Windows Server 2012。
在安装完毕后,安装了新的XAMPP,并且我认识到,mssql_connect在前一段时间已被打折。所以我检查了支持的最后一个版本是5.2。 所以我为旧版重新安装了XAMPP,但我仍然无法使其工作。
我收到错误:
Warning: mssql_connect() [function.mssql-connect]: Unable to connect to server: SERVER/SQLEXPRESS in F:\xampp_php5.2\htdocs\open_db.php on line 2
Error!
我的文件如下:
<?php
$link = mssql_connect("SERVER/SQLEXPRESS","login", "pass") or die("Error!");
mssql_select_db("dbinet") or die("DB not exist");
echo 'success';
?>
我可以使用登录登录到此服务器(SERVER / SQLEXPRESS)并直接通过SQL Server Managment Studio传递,但不能通过网页...
知道哪里有问题?