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.gzusing phpMyAdmin. - open
/etc/phpmyadmin/config.inc.phpand edit lines 81-92: changepma_bookmarktopma__bookmarkand so on.
这篇关于phpmyadmin.pma_table_uiprefs 不存在的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:phpmyadmin.pma_table_uiprefs 不存在
基础教程推荐
- 表 './mysql/proc' 被标记为崩溃,应该修复 2022-01-01
- mysql选择动态行值作为列名,另一列作为值 2021-01-01
- 在多列上分布任意行 2021-01-01
- 在 MySQL 中:如何将表名作为存储过程和/或函数参数传递? 2021-01-01
- 二进制文件到 SQL 数据库 Apache Camel 2021-01-01
- 什么是 orradiag_<user>文件夹? 2022-01-01
- oracle区分大小写的原因? 2021-01-01
- 如何在 SQL 中将 Float 转换为 Varchar 2021-01-01
- 如何根据该 XML 中的值更新 SQL 中的 XML 2021-01-01
- MySQL 中的类型:BigInt(20) 与 Int(20) 2021-01-01
