0

我在 connection.php 文件上遇到问题,该文件在本地主机上运行良好,但是当上传到托管时出现如下错误:

Warning: mysql_connect () [function.mysql-connect]: Can not connect to local MySQL server through socket '/ var / lib / mysql / mysql.sock' (2) in / home/content/84/10207284/html / koneksi.php on line 6

我的脚本是这样的:

<? php
    $server = "localhost";
    $username = "*******";
    $password = "******";
    $database = "*****";
    mysql_connect ("$server", "$username", "$password") or die ("Failed");/ /  the error Line
    mysql_select_db ("holidayhappy") or die ("Database not found");
?>

我曾尝试使用服务器 IP ann 端口更改 localhost,但它也不起作用。

有人可以帮我解决这个问题吗...?

4

1 回答 1

0

如果您使用服务器托管,并且 mysql 服务器安装在同一主机上

然后尝试 servername 作为 localhost

如果没有,请确保启用远程访问

按照下面提到的链接中的教程

http://www.cyberciti.biz/tips/how-do-i-enable-remote-access-to-mysql-database-server.html

于 2012-12-26T07:30:33.467 回答