Home  >  Article  >  Database  >  Why can't phpmyadmin in wamp be opened? (Attached is the solution)

Why can't phpmyadmin in wamp be opened? (Attached is the solution)

藏色散人
藏色散人forward
2021-08-04 15:16:354879browse

The following tutorial column of phpmyadmin will introduce to you the solution to the problem that phpmyadmin in wamp cannot be opened. I hope it will be helpful to friends in need!

Why can't phpmyadmin in wamp be opened? (Attached is the solution)

#This problem occurs basically because you have used mysql with a black screen under wamp, and the password when entering is not empty.

Solution:

1. Find the old version of config.inc.php

in the phpmyadmin folder

The new version is in the wamp\apps\phpmyadmin4.1.14 folder


This file has the following lines

$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
$cfg['Servers'][$i]['AllowNoPassword'] = true;

Just set the password to the password of your database root account

For example, my password is root, so change it to root


##For more phpmyadmin related knowledge, please visit

phpmyadminTutorial column!

The above is the detailed content of Why can't phpmyadmin in wamp be opened? (Attached is the solution). For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:csdn.net. If there is any infringement, please contact admin@php.cn delete