PHPMYADMIN ,,处理请求错误代码中的错误:200错误文本:OK [英] PHPMYADMIN ,,Error in Processing Request Error code: 200 Error text: OK

查看:1246
本文介绍了PHPMYADMIN ,,处理请求错误代码中的错误:200错误文本:OK的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在Ubuntu中将PhpMyAdmin与PHP和MySQL堆栈结合使用时,我会遇到问题:

Using PhpMyAdmin with PHP and MySQL stack in Ubuntu I encounter the problem:

1146 –表'phpmyadmin.pma_table_uiprefs'不存在

1146 – Table ‘phpmyadmin.pma_table_uiprefs’ doesn’t exist

为了解决这个问题,我添加了:

TO solve this I added:

$ Cfg [‘Servers’] [$ i] [‘table_uiprefs’] = ‘pma_table_uiprefs';

更改为:

$ cfg [‘Servers’] [$ i] [‘pma__table_uiprefs’] = ‘pma__table_uiprefs';

config.inc.php 文件中

之后,我遇到了类似的问题:

in config.inc.php file after that I've got the problem like:

处理请求错误

Error in Processing Request

错误代码:200

错误文字:确定

我该如何解决?

推荐答案

看起来您的配置已被修改,请将其放在/var/www/phpmyadmin/config.inc.php中,如果您将其他内容设置为空白,还可以在下面更改密码

looks like your config has been modified put this in /var/www/phpmyadmin/config.inc.php and also change password below if you set something else blank

$cfg['blowfish_secret'] = 'a8b7c6d'; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */

/*
 * Servers configuration
 */
$i = 0;

/*
 * First server
 */
$i++;
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'config';
/* Server parameters */
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
/* Select mysql if your server does not have mysqli */
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
$cfg['Servers'][1]['user'] = 'root'; //edit this line
$cfg['Servers'][1]['password'] = 'XXXX'; // your password

并暂时对此行发表评论

//$ cfg [‘Servers’] [$ i] [‘pma__table_uiprefs’] = ‘pma__table_uiprefs';

这篇关于PHPMYADMIN ,,处理请求错误代码中的错误:200错误文本:OK的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆