Mysql phpMyAdmin不允许访问

Mysql phpMyAdmin不允许访问,mysql,phpmyadmin,wampserver,Mysql,Phpmyadmin,Wampserver,我正在使用WAMP/phpMyAdmin,但无法访问它:( 它需要一个密码,并且给出root用户名和blacnk密码将拒绝访问!!!请查看 创建一个新帐户,然后从phpMyAdmin目录打开config.inc.php并进行这些更改 <?php /* Servers configuration */ $i = 0; /* Server: localhost [1] */ $i++; $cfg['Servers'][$i]['verbose'] = 'localhost'; $cfg['

我正在使用WAMP/phpMyAdmin,但无法访问它:( 它需要一个密码,并且给出root用户名和blacnk密码将拒绝访问!!!

请查看

创建一个新帐户,然后从phpMyAdmin目录打开config.inc.php并进行这些更改

<?php

/* Servers configuration */
$i = 0;

/* Server: localhost [1] */
$i++;
$cfg['Servers'][$i]['verbose'] = 'localhost';
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['port'] = '';
$cfg['Servers'][$i]['socket'] = '';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
$cfg['Servers'][$i]['AllowNoPassword'] = true;

/* End of servers configuration */

$cfg['DefaultLang'] = 'en-utf-8';
$cfg['ServerDefault'] = 1;
$cfg['UploadDir'] = '';
$cfg['SaveDir'] = '';

?> 

看一看

创建一个新帐户,然后从phpMyAdmin目录打开config.inc.php并进行这些更改

<?php

/* Servers configuration */
$i = 0;

/* Server: localhost [1] */
$i++;
$cfg['Servers'][$i]['verbose'] = 'localhost';
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['port'] = '';
$cfg['Servers'][$i]['socket'] = '';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
$cfg['Servers'][$i]['AllowNoPassword'] = true;

/* End of servers configuration */

$cfg['DefaultLang'] = 'en-utf-8';
$cfg['ServerDefault'] = 1;
$cfg['UploadDir'] = '';
$cfg['SaveDir'] = '';

?> 


重新安装Wamp可能是一个解决方案,我喜欢它的默认条件下的一切

重新安装Wamp可能是一个解决方案,我喜欢它的默认条件下的一切

你试过root吗?如果你需要更多帮助,你必须更具体。我没有试过root,但试过root和空密码你试过root吗如果你需要更多帮助,我必须更具体。我没有试过root,但试过root和空白密码。对我来说,我无法仅打开phpMyAdmin,其余部分工作正常。对我来说,我无法仅打开phpMyAdmin,其余部分工作正常。