将phpadmin连接到远程数据库

时间:2015-07-05 11:54:09

标签: php mysql phpmyadmin

我试图将本地phpadmin同步到远程数据库,但它说错误。错误说"无法登录MySQL服务器"。

以下是phpadmin的config.inc.php文件。

document.clear = function () { document.body.innerHTML = ''; }
// usage
document.clear();

我尝试重新安装xampp并重新连接,我现在可以登录到本地mysql数据库,但是当连接到远程服务器时,它说下面的错误。

/* Authentication type and info */
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'database_user_1'; //database user name
$cfg['Servers'][$i]['password'] = 'root'; //database user 1 password
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
$cfg['Lang'] = '';

/* Bind to the localhost ipv4 address and tcp */
$cfg['Servers'][$i]['host'] = '208.91.198.231';
$cfg['Servers'][$i]['port'] = '3306';
$cfg['Servers'][$i]['connect_type'] = 'tcp';

任何建议如何解决问题。

1 个答案:

答案 0 :(得分:0)

根据要求仔细检查您的版本;该错误消息表明您的phpMyAdmin需要MySQL 5.5或更高版本,但您的主机使用的是旧版本。检查phpMyAdmin download page,其中列出了受支持的phpMyAdmin版本及其要求的简要列表(当然还有相应手册的"要求"部分)。对于小于5.5的MySQL,phpMyAdmin 4.0.10.10是当前建议的版本。