Additional features for working with linked tables have been deactivated – phpMyAdmin

phpMyAdmin is a free tool intended to handle the administration of MySQL using the web. There are several good reference materials available, in case you want to learn more about phpMyAdmin and what it can do. Installing phpMyAdmin, as described in this post, is one of the first things I do after installing a LAMP server.

Sometimes, after installing phpMyAdmin, it displays the following error: "The additional features for working with linked tables have been deactivated. To find out why click here". Upon clicking "To find out why click here" the following is displayed:

Additional Features For Working With Linked Tables Have Been Deactivated - Phpmyadmin Error
Phpmyadmin Error

In this post, I will describe how to fix "Additional features for working with linked tables have been deactivated" in phpMyAdmin on Ubuntu systems. This should work on other Linux distributions as well.

How to fix "Additional features for working with linked tables have been deactivated" Error

Small change needs to be done. Edit the following file:

sudo nano -w /etc/phpmyadmin/config.inc.php

Add the third line: "$cfg['Servers'][$i]['tracking'] = 'pma_tracking';".

...
$cfg['Servers'][$i]['history'] = 'pma_history';
$cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords';
$cfg['Servers'][$i]['tracking'] = 'pma_tracking';
...
Recommended Guides for MySQL and phpMyAdmin:

Save the file and exit. You might have to clear your browser's cookies/cache for the change to appear. Thats it, "Additional features for working with linked tables have been deactivated" error should now be gone.

Be the 1 in 200,000. Help us sustain what we do.
31 / 150 by Dec 31, 2024
Join Us (starting from just $1.67/month)

Anand

Anand is a self-learned computer enthusiast, hopeless tinkerer (if it ain't broke, fix it), a part-time blogger, and a Scientist during the day. He has been blogging since 2010 on Linux, Ubuntu, Home/Media/File Servers, Smart Home Automation, and related HOW-TOs.