phpMyAdmin 在启动时出现显示插件错误

发布于 2024-08-11 12:29:09 字数 111 浏览 1 评论 0原文

我的 WAMP phpMyAdmin 实例现在在启动时抛出 SHOW PLUGINS 错误。过去从来没有这样做过,但现在这样做了,而且不会启动。有什么想法如何解决这个问题吗?我联系了支持人员,但尚未得到回复。

My WAMP phpMyAdmin instance is now throwing a SHOW PLUGINS error on startup. It has never done this in the past, but now does this and will not start. Any ideas how to resolve this issue? I contacted support but haven't gotten a response back yet.

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

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

发布评论

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

评论(3

烟火散人牵绊 2024-08-18 12:29:09

问题是,对于更高版本,显示插件已被弃用。要解决此问题,请编辑以下文件:

C:\Program Files\MySQL\MySQL Workbench 5.2 CE\modules\wb_admin_control.py (windows)

/Applications/MySQLWorkbench.app/Contents/ PlugIns/wb_admin_control.py (mac)

第 588 行注释掉这一行:

result = self.exec_query("show plugins")

使其看起来像这样:

#result = self.exec_query("show plugins")

然后重新启动 mysql 工作台,一切都会正常工作。

The problem is that for later versions, show plugins was deprecated. To fix the problem edit the following file:

C:\Program Files\MySQL\MySQL Workbench 5.2 CE\modules\wb_admin_control.py (windows)

or

/Applications/MySQLWorkbench.app/Contents/PlugIns/wb_admin_control.py (mac)

on line 588 comment out this line:

result = self.exec_query("show plugins")

so that it looks like this:

#result = self.exec_query("show plugins")

Then restart mysql workbench and everything will work as it should.

ζ澈沫 2024-08-18 12:29:09

Show Plugins 是在 mysql 5.1+ 中引入的。如果您使用较新版本的 phpmyadmin 3.x 和较旧版本的 mysql 5.0,那么您将收到此错误。解决方案是升级 mysql 或降级 phpmyadmin。

Show plugins is introduced in mysql 5.1+. If you are using a newer version of phpmyadmin 3.x with an older version of mysql 5.0 then you will get this error. Solution would be to upgrade mysql or downgrade phpmyadmin.

优雅的叶子 2024-08-18 12:29:09

您的 MySQL 用户可能没有足够的权限来访问临时文件夹

Your MySQL user might not have enough permissions to access the temporary folder

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