phpMyAdmin - Config文件有变化吗?

时间:2009-01-28 15:34:50

标签: php mysql linux phpmyadmin fedora

我刚在我的新Fedora Core 10专用服务器上安装了phpMyAdmin。

我下载了phpMyAdmin-3.1.2-english.tar.gz。我解压缩并将其放在此文件夹/opt/phpMyAdmin-3.1.2-english中,然后在/ var / www / html目录中创建了一个符号链接,以便我可以像这样访问它:http://www.mydomainname.com/webdb。< / p>

当我将浏览器指向该URL时,它要求我登录,我只能使用localhost作为用户名和空密码登录。所以我想我会改变它并遵循一些建议改变这些行的网络教程:

$cfg['Servers'][$i]['auth_type'] = ‘http’; 
$cfg['Servers'][$i]['user'] = ‘USERNAME’;
$cfg['Servers'][$i]['password'] = ‘PASSWORD’;

但是,我的config.inc.php中甚至不存在这些行!我以前做过这个安装,我记得这些文件在那里,但不是这个isntall。

我尝试添加这些行并没有什么区别。

phpMyAdmin是否更改了配置文件或安装不正确?

感谢您的帮助!

修改

我设法删除那个并使用“yum install phpMyAdmin”,配置文件在这里工作正常! :)

但是,我仍然无法使用我在config.inc.php中建议的密码和用户名访问phpMyAdmin。这是否意味着我建议的用户名和密码是config.inc.php不符合MySQL服务器的用户名和密码?

1 个答案:

答案 0 :(得分:4)

会设置

$cfg['Servers'][$i]['auth_type'] = 'config';

而不是

$cfg['Servers'][$i]['auth_type'] = ‘http’;

帮助?

有关详细信息,请参阅http://www.un4given.nl/phpMyAdmin/Documentation.html#config