連接到本地MySQL服務器我有一個問題,當我運行我的PHP代碼(有時它成功運行,但我需要如何避免它在未來) 錯誤表現爲:問題:PHP致命錯誤:無法通過套接字
PHP Fatal error: Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2) in /home/myegyme/public_html/Connections/myegy.php on line 9
和 「/home/myegyme/public_html/Connections/myegy.php」 載:
<?php
# FileName="Connection_php_mysql.htm"
# Type="MYSQL"
# HTTP="true"
$hostname_myegy = "localhost";
$database_myegy = "mydatabase";
$username_myegy = "myusername";
$password_myegy = "mypassword";
$myegy = mysql_pconnect($hostname_myegy, $username_myegy, $password_myegy) or trigger_error(mysql_error(),E_USER_ERROR);
?>
我該如何解決這個問題?請幫幫我 !
我無法控制託管我的網站的服務器的問題,所以我無法編輯此文件 – user504363 2011-01-09 14:45:19