解决phpmyadmin在输入初始密码后显示空白页

本篇将介绍如何解决安装phpmyadmin后,输入密码显示空白页。

声明:如果你在安装apache的时候没有输入密码,默认用户名为‘root’,默认密码为空。

首先,你要确定你正确安装了phpmyadmin,命令如下:

apt-get install phpmyadmin

其次,你要进入/etc/phpmyadmin/config.inc.php

找到

/* Uncomment the following to enable logging in to passwordless accounts,

* after taking note of the associated security risks. */

在之后加入以下命令:

$cfg[‘Servers’][$i][‘user’] = ‘root’;

$cfg[‘Servers’][$i][‘AllowNoPasswordRoot’] = TRUE;

然后用你的用户名和密码登陆即可