phpMyAdmin - Error: relational features are disabled

拈花ヽ惹草 提交于 2019-12-03 07:28:01

Convert your table/db engine to InnoDB using

ALTER TABLE table_name ENGINE=InnoDB;

Change your table engin to InnoDB using:

ALTER TABLE your table name ENGINE=InnoDB

I had the same issue, it was because I didn't have a database on the mysql server for pypMyAdmin settings.

So you may need to update your PMA settings database or create one...

There is a guide on how to do it here

I have faced the same error I didn't create any PMA Users I just upgraded the version of phpmyadmin to latest version and everything worked just fine

here is the link for downloading and for me it was 4.6.0

https://www.phpmyadmin.net/downloads/

and for me I was working on MAMP Pro so I just did :

  • I stopped the server (MAMP Pro).
  • I copied the file (config.inc.php) from the old phpmyadmin folder to the new one.
  • I replaced the older version with the new one in ("/Applications/MAMP/bin/").
  • I copied the same new version folder to ("/Library/Application Support/appsolute/MAMP PRO/") because I am working with MAMP Pro not MAMP.
  • And then I restarted the server (MAMP Pro ) and everything worked just fine.

I hope it will work for you as well.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!