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 不存在


基础教程推荐
- Sql Server 字符串到日期的转换 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01