phpMyAdmin 中的跟踪禁用错误

发布于 2024-11-05 15:24:10 字数 1100 浏览 1 评论 0原文

我最近在新服务器上安装了 Wamp,当我登录 phpmyadmin 时,我在主屏幕底部收到此错误:

$cfg['Servers'][$i]['tracking'] ... 不行 [ 文档 ]
跟踪: 已禁用

所有其他功能均已启用。

我已经加载了 phpmyadmin 数据库。我已在 config.inc.php 文件中添加了该

$cfg['Servers'][$i]['tracking'] = ‘pma_tracking’;

行,并仔细检查了 pma_tracking 表是否位于 phpmyadmin 数据库中。进行更改后,我也尝试使用另一个浏览器,但没有骰子。

这是我的 config.inc.php 文件的该部分:

$cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';<br/>
$cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark';<br/>
$cfg['Servers'][$i]['relation'] = 'pma_relation';<br/>
$cfg['Servers'][$i]['table_info'] = 'pma_table_info';<br/>
$cfg['Servers'][$i]['table_coords']= 'pma_table_coords';<br/>
$cfg['Servers'][$i]['pdf_pages']= 'pma_pdf_pages';<br/>
$cfg['Servers'][$i]['column_info']= 'pma_column_info';<br/>
$cfg['Servers'][$i]['history'] = 'pma_history';<br/>
$cfg['Servers'][$i]['designer_coords']= 'pma_designer_coords';<br/>
$cfg['Servers'][$i]['tracking']= ‘pma_tracking’;

有什么建议吗?

谢谢!

I recently installed Wamp on a new server and when I log into phpmyadmin I get this error at the bottom of the home screen:

$cfg['Servers'][$i]['tracking'] ... not OK [ Documentation ]
Tracking:
Disabled

All the other features are enabled.

I had already loaded the phpmyadmin database. I have added the

$cfg['Servers'][$i]['tracking'] = ‘pma_tracking’;

line in my config.inc.php file and I double checked that the pma_tracking table is in the phpmyadmin database. I also tried from another browser after I made the changes, but no dice.

Here's that section of my config.inc.php file:

$cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';<br/>
$cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark';<br/>
$cfg['Servers'][$i]['relation'] = 'pma_relation';<br/>
$cfg['Servers'][$i]['table_info'] = 'pma_table_info';<br/>
$cfg['Servers'][$i]['table_coords']= 'pma_table_coords';<br/>
$cfg['Servers'][$i]['pdf_pages']= 'pma_pdf_pages';<br/>
$cfg['Servers'][$i]['column_info']= 'pma_column_info';<br/>
$cfg['Servers'][$i]['history'] = 'pma_history';<br/>
$cfg['Servers'][$i]['designer_coords']= 'pma_designer_coords';<br/>
$cfg['Servers'][$i]['tracking']= ‘pma_tracking’;

Any suggestions?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

↙温凉少女 2024-11-12 15:24:10

您的 pmadb 中可能缺少一个表。如Documentation.html中所述,我们提供了scripts/create_tables.sql,它将创建缺失的表(您只需导入此文件)。

转到 phpMyAdmin SQL 并导入 \phpMyAdmin\scripts\create_tables.sql 并运行它。或者只需打开 create_tables.sql 复制所有内容并粘贴到 phpMyAdmin 中的 sql 选项卡中,然后单击“Go”按钮。
重新启动 Apache 和 MySQL 服务
这应该可以解决你的问题。

You're probably missing a table in your pmadb. As described in Documentation.html, we provide scripts/create_tables.sql which will create the missing tables (you just need to import this file).

Go to phpMyAdmin SQL and import \phpMyAdmin\scripts\create_tables.sql and run it. Or just open create_tables.sql copy everything and paste in the sql tab in phpMyAdmin and click "Go" button.
Restart the services Apache and MySQL
This should solve your problem.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文