2016-07-06 60 views
0

每当我关机后启动我的笔记本电脑,我需要重新安装XAMPP来解决“拒绝访问”与其他几个错误(显示在上传的照片中)的问题。从XAMPP重新启动服务器不会改变任何事情。它背后的真正原因是什么以及如何解决它?如何解决phpmyadmin的“拒绝访问”消息?

enter image description here

+2

Poss可重复的[phpMyAdmin访问被拒绝](http://stackoverflow.com/questions/5483518/phpmyadmin-access-denied) – PacMan

回答

0

前往文件夹C:\ XAMPP的\ phpMyAdmin的,诠释这个文件夹中有一个文件 “config.inc.php中”。在Notepad ++或Sublime Text或任何文本编辑器中打开此文件。

添加下面这段代码这两个代码:

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

添加下面的代码:

$cfg['Servers'][$i]['connect_type'] = 'tcp'; 
$cfg['Servers'][$i]['compress'] = false; 

重新启动XAMPP,也将努力

矿XAMPP配置代码如下:

<?php 

/* Servers configuration */ 
$i = 0; 

$cfg['blowfish_secret'] = 'a8b7c6d'; //What you want 

/* Server: localhost [1] */ 
$i++; 
$cfg['Servers'][$i]['verbose'] = 'Local Databases'; 
$cfg['Servers'][$i]['host'] = '127.0.0.1'; 
$cfg['Servers'][$i]['extension'] = 'mysqli'; 
$cfg['Servers'][$i]['auth_type'] = 'cookie'; 
$cfg['Servers'][$i]['host'] = 'localhost'; 
$cfg['Servers'][$i]['connect_type'] = 'tcp'; 
$cfg['Servers'][$i]['compress'] = false; 
$cfg['Servers'][$i]['user'] = 'root'; 
$cfg['Servers'][$i]['password'] = ''; 

// Hidden databases in PhpMyAdmin left panel 
//$cfg['Servers'][$i]['hide_db'] = '(information_schema|mysql|performance_schema|sys)'; 

// Allow connection without password 
$cfg['Servers'][$i]['AllowNoPassword'] = true; 

// Suppress Warning about pmadb tables 
$cfg['PmaNoRelation_DisableWarning'] = true; 

// To have PRIMARY & INDEX in table structure export 
//$cfg['Export']['sql_drop_table'] = true; 
//$cfg['Export']['sql_if_not_exists'] = true; 

$cfg['MySQLManualBase'] = 'http://dev.mysql.com/doc/refman/5.7/en/'; 
/* End of servers configuration */ 

?> 
相关问题