Phpmyadmin 处理请求时出错错误代码:200错误文本:确定(已拒绝)-WAMP服务器

Phpmyadmin 处理请求时出错错误代码:200错误文本:确定(已拒绝)-WAMP服务器,phpmyadmin,wamp,wampserver,Phpmyadmin,Wamp,Wampserver,我最近试图登录我的WAMP服务器(localhost)中的PhpMyAdmin面板,但出现以下错误 Error in processing request Error code: 200 Error text: OK (rejected) It seems that the connection to the server has been lost. Please check your network connectivity and server status. 我正在使用: PHP:7.

我最近试图登录我的WAMP服务器(localhost)中的PhpMyAdmin面板,但出现以下错误

Error in processing request
Error code: 200
Error text: OK (rejected)
It seems that the connection to the server has been lost. Please check your network connectivity and server status.
我正在使用: PHP:7.1.33 PhpMyAdmin:5.0.2 马里亚布:10.3.23

下面是我的config.inc.php:

<?php

/* Servers configuration */
$i = 0;
/* The 'cookie' auth_type uses AES algorithm to encrypt the password. If
 * at least one server configuration uses 'cookie' auth_type, enter here a
 * pass phrase that will be used by AES. The minimum length is 32 characters
 * The maximum length seems to be 46 characters. */
$cfg['blowfish_secret'] = 'h]C+{nqW$omNoTIkCwC$%z-LTcy%p6_j';

//Checking Active DBMS Servers
$wampConf = @parse_ini_file('../../wampmanager.conf');
//Check if MySQL and MariaDB with MariaDB on default port
$mariaFirst = ($wampConf['SupportMySQL'] == 'on' && $wampConf['SupportMariaDB'] == 'on' && $wampConf['mariaPortUsed'] == $wampConf['mysqlDefaultPort']) ? true : false;
if($wampConf['SupportMySQL'] == 'on') {
/* Server: localhost [1] */
    $i++;
    if($mariaFirst) $i++;
    $cfg['Servers'][$i]['verbose'] = 'MySQL';
    $cfg['Servers'][$i]['host'] = '127.0.0.1';
    $cfg['Servers'][$i]['port'] = $wampConf['mysqlPortUsed'];
    $cfg['Servers'][$i]['extension'] = 'mysqli';
    $cfg['Servers'][$i]['auth_type'] = 'cookie';
    $cfg['Servers'][$i]['user'] = '';
    $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;
}
/* Server: localhost [2] */
if($wampConf['SupportMariaDB'] =='on') {
    $i++;
    if($mariaFirst) $i -= 2;
    $cfg['Servers'][$i]['verbose'] = 'MariaDB';
    $cfg['Servers'][$i]['host'] = '127.0.0.1';
    $cfg['Servers'][$i]['port'] = $wampConf['mariaPortUsed'];
    $cfg['Servers'][$i]['extension'] = 'mysqli';
    $cfg['Servers'][$i]['auth_type'] = 'cookie';
    $cfg['Servers'][$i]['user'] = '';
    $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 */

?>

我尝试清除所有cookies并刷新网页,以及“允许所有cookies修复”。我也在其他浏览器中尝试过,但错误仍然存在。我也试着重新安装了所有的服务,但仍然有相同的错误。
有人能看到这里出了什么问题吗?

好吧,今天我终于修复了它,我想这是因为防病毒更新(我不确定)。我安装了Bitdefender,WAMP在安装后确实可以工作,但几天后,这个错误开始出现。为了解决这个问题,我卸载了WAMP,禁用了我的防病毒软件,并再次安装了WAMP服务器。现在它工作得很好!希望有帮助:)

您能告诉我们您使用的是哪个MariaDB、PHP和phpMyAdmin版本吗?PHP:7.1.33 phpMyAdmin:5.0.2 MariaDB:10.3.23这真的很奇怪,因为错误消息显示的是一个非常旧的MariaDB版本(我很难准确地找到
lc_messages
是何时引入的,但可能是在5.1或5.5版左右)。但是您的MariaDB 10.3应该支持它,我完全不知道它为什么不能正常工作。是否有可能在服务器上运行另一个MySQL或MariaDB服务器实例,而不是您期望的实例?也许您可以查看操作系统进程列表,以查看运行实例的完整路径。