在Ubuntu中使用PhpMyAdmin与PHP和MySQL堆栈我遇到了问题:
1146 - 表'phpmyadmin.pma_table_uiprefs'不存在
为了解决这个问题,我补充说:
$ Cfg [‘Servers’] [$ i] [‘table_uiprefs’] = ‘pma_table_uiprefs';
更改为:
$ cfg [‘Servers’] [$ i] [‘pma__table_uiprefs’] = ‘pma__table_uiprefs';
在 config.inc.php 文件中之后,我遇到了类似的问题:
处理请求中的错误
错误代码:200
错误文字:确定
我该如何解决这个问题?
答案 0 :(得分:0)
看起来您的配置已被修改,请将此放在/var/www/phpmyadmin/config.inc.php中,如果您将其他内容设置为空白,也可以在下面更改密码
$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';
答案 1 :(得分:0)
出于某种原因,我使用了我发现的所有教程,但对我却不起作用,我使用XAMPP,但是在观看了如此多的视频之后,一次又一次地卸载程序1,最终我想到了从另一个浏览器打开xampp,不再出现错误,因此我开始从Chrome浏览器中删除所有Cookies,然后它又开始工作。对我有用。