我是 php 以及 Google-app 引擎的初学者。我已经创建了一个 php 网页,我只需要它来连接到外部 MySQL 数据库来记录用户访问统计信息。在我如何连接下stats.php
我include("config.php");
也可以:config.php
<?php
// change these variables
$host=("example.com"); //host
$uname="abc";//MySQL username
$pass="Abc@123";//MySQL password
$db="stats"; //MySQL Database
//don't need to change
$con = mysql_connect($host,$uname,$pass);
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db($db, $con);
?>
当我运行stats.php
时,appspot.com 上出现以下错误
Failed to connect to MySQL: Unable to find the socket transport "tcp" - did you forget to enable it when you configured PHP?
我还确认了从外部主机到我的服务器的连接,port 3306
也已打开。
$ mysql -u webadmin –h (server ip) –p
我没有正确使用获取网址的方法,
请帮忙。谢谢。