【发布时间】:2013-11-08 09:03:14
【问题描述】:
我正在使用 cPanel 服务器,但出现此错误。
“读取初始通信数据包”时与 MySQL 服务器的连接丢失,系统错误:0
虽然我读了他的问题 Lost connection to MySQL server at 'reading initial communication packet', system error: 0 ,但我仍然没有得到解决方案。当我运行我的 php 代码时,它会返回
"Connection successfulLost connection to MySQL server at 'reading initial communication packet', system error: 0"
代码如下:
$con = mysql_connect('mysite.com:2082', 'me@mysite.com', 'passwordhere', 'dbname');
if (mysqli_connect_errno($con))
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
else
{
echo "Connection successful";
}
if ($selected = mysql_select_db("dbname",$con) or die(mysql_error())){
echo "Your database name is dbname";
}
mysqli_close($con);
感谢您的回答。
【问题讨论】: