Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

phpMyAdmin - Error: relational features are disabled

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!

like image 238
user3022069 Avatar asked Jan 29 '15 15:01

user3022069


People also ask

Why does phpMyAdmin say error?

You may receive an error message stating that phpMyAdmin needs a PHP version within a specific range. This might happen if you're running an outdated version of PHP, or a new update is not compatible with your version of MAMP. In this case, you”ll need to change the PHP version of your MAMP application.


1 Answers

Convert your table/db engine to InnoDB using

ALTER TABLE table_name ENGINE=InnoDB;
like image 102
Mwangi Thiga Avatar answered Sep 28 '22 20:09

Mwangi Thiga