문제

Trying to install roundcube webmail - had some issues related to driver configuration - I'm now pretty certain the driver is configured ok now - i'm getting an error form it :

"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."

Now, this is from the following file:

<?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);
?>

where the username and pass are good. In fact - i can use the same credentials to connect to the db instance through Toad.

In MSSQL you may need to tell the server to allow connections from remote machines and all that - but surely connecting through php is the same as connecting through Toad?

I've tried setting 127.0.0.1 instead of localhost in case it's a case of connecting through the server name. Still no joy.

Is there anything else I may need to config to get this working?

도움이 되었습니까?

해결책

I changed the server to 127.0.0.1:3306 and it connected!!

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top