phpmyadmin.pma_table_uiprefs doesn#39;t exist(phpmyadmin.pma_table_uiprefs 不存在)
问题描述
我搜索了互联网,但找不到与此特定错误/表格相关的任何内容.当我尝试在 phpMyAdmin 中查看表格时它会弹出.我以 root 身份登录,phpMyAdmin 的安装(在 ubuntu 13.10 下)是全新的,到目前为止未受影响.
I searched the internet but cannot find anything related to this specific error/table. It pops up when I try to view a table in phpMyAdmin. I am logged in as root and the installation (under ubuntu 13.10) of phpMyAdmin is fresh and untouched so far.
全文如下:
SELECT `prefs`
FROM `phpmyadmin`.`pma_table_uiprefs`
WHERE `username` = 'root'
AND `db_name` = 'symfony'
AND `table_name` = 'users'
MySQL reports: #1146 - Table 'phpmyadmin.pma_table_uiprefs' doesn't exist
是安装坏了还是我遗漏了什么?
Is the installation just broken or am I missing something?
推荐答案
您至少缺少一个 phpMyAdmin 配置存储表,或者配置的表名与实际表名不匹配.
You are missing at least one of the phpMyAdmin configuration storage tables, or the configured table name does not match the actual table name.
请参阅http://docs.phpmyadmin.net/en/latest/setup.html#phpmyadmin-configuration-storage.
要做什么的快速总结可以是:
A quick summary of what to do can be:
- 在 shell 上:
找到 create_tables.sql
. - 使用 phpMyAdmin 导入
/usr/share/doc/phpmyadmin/examples/create_tables.sql.gz
. - 打开
/etc/phpmyadmin/config.inc.php
并编辑第 81-92 行:将pma_bookmark
更改为pma__bookmark
等等.
- On the shell:
locate create_tables.sql
. - import
/usr/share/doc/phpmyadmin/examples/create_tables.sql.gz
using phpMyAdmin. - open
/etc/phpmyadmin/config.inc.php
and edit lines 81-92: changepma_bookmark
topma__bookmark
and so on.
这篇关于phpmyadmin.pma_table_uiprefs 不存在的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:phpmyadmin.pma_table_uiprefs 不存在


基础教程推荐
- CHECKSUM 和 CHECKSUM_AGG:算法是什么? 2021-01-01
- ORA-01830:日期格式图片在转换整个输入字符串之前结束/选择日期查询的总和 2021-01-01
- MySQL 5.7参照时间戳生成日期列 2022-01-01
- 如何在 CakePHP 3 中实现 INSERT ON DUPLICATE KEY UPDATE aka upsert? 2021-01-01
- 带更新的 sqlite CTE 2022-01-01
- 使用 VBS 和注册表来确定安装了哪个版本和 32 位 2021-01-01
- while 在触发器内循环以遍历 sql 中表的所有列 2022-01-01
- 带有WHERE子句的LAG()函数 2022-01-01
- 从字符串 TSQL 中获取数字 2021-01-01
- MySQL根据从其他列分组的值,对两列之间的值进行求和 2022-01-01