0

尝试安装roundcube webmail - 有一些与驱动程序配置相关的问题 - 我现在很确定驱动程序现在配置好了 - 我收到了一个错误:

"A connection attempt failed because the connected party did not properly 
respond after a period of time, or established connection failed because 
connected host has failed to respond."

现在,这是来自以下文件:

<?php
// hostname or ip of server (for local testing, localhost should work)
$dbServer='localhost';

// username and password to log onto db server
$dbUser='*****';
$dbPass='*****';

// name of database
$dbName='roundcubemail';

    $link = mysql_connect("$dbServer", "$dbUser", "$dbPass")or die(mysql_error());
    print "Connected successfully<br>";
    mysql_select_db("$dbName") or die("Could not select database");
    print "Database selected successfully<br>";

// close connection
mysql_close($link);
?>

用户名和通行证很好的地方。事实上 - 我可以使用相同的凭据通过 Toad 连接到数据库实例。

在 MSSQL 中,您可能需要告诉服务器允许来自远程机器的连接等等 - 但通过 php 连接肯定与通过 Toad 连接相同?

我尝试设置 127.0.0.1 而不是 localhost 以防它是通过服务器名称连接的情况。仍然没有喜悦。

还有什么我可能需要配置才能使其正常工作吗?

4

1 回答 1

0

我将服务器更改为 127.0.0.1:3306 并连接!

于 2010-09-28T14:15:47.520 回答