PHPMyAdmin doesn't connect after root password change

▼魔方 西西 提交于 2019-11-30 07:30:38
Nick

You need to edit the config.inc file in the phpMyAdmin directory (probably C:\xampp\phpMyAdmin) and change this line to match the password you entered for root in phpMyAdmin.

$cfg['Servers'][$i]['password'] = ' ';

If you have installed WAMP, go to the [wamp root]\apps[phpmyadmin installation] and find the file config.inc.php. Then you have the change the following entry to the new password of the root user.

$cfg['Servers'][$i]['password']

save the file and don't forget to restart WAMP services. Now it should work as a charm :)

You need to specify the actual password. Not encrypted password in config file

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!