phpMyAdmin - Error: relational features are disabled

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-04 11:59:47

问题


When I want to create a relation between two tables in designer mode with phpMyAdmin 4.3.8, it gives me an error saying: Error: relational features are disabled! When I try it with 4.1.4, it works just fine. I can't seem to find where I should change the settings to be able to create relations in designer mode. Any idea? Thanks in advance!


回答1:


Convert your table/db engine to InnoDB using

ALTER TABLE table_name ENGINE=InnoDB;




回答2:


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




回答3:


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.



来源:https://stackoverflow.com/questions/28218491/phpmyadmin-error-relational-features-are-disabled

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