phpMyAdmin 中的跟踪禁用错误
我最近在新服务器上安装了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的 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.