phpMyAdmin to resolve additional features of linked tables not yet activated alert
phpMyAdmin has been the " link table add-on feature has not been activated " issue, after landing phpMyAdmin, will be displayed at the bottom of the "link table add-on function has not been activated." To find out why, please click here. "Prompt. About this problem has not been set to solve, until today, it is boring because of it!
If you are careful enough, I believe you can also find such problems in your phpmyadmin, holding a try attitude to Baidu a bit, there is really a solution, have to say Baidu's great Ah! My habit is to find a solution, and then experiment, summary, and finally my experience to tell you netizens!
My phpMyAdmin version is v 3.3.7, which is a relatively new version,
The first step: Use the MySQL Administrator account login via phpMyAdmin, then click "Import", and then click the "Browse" button to find the phpMyAdmin folder under the Scripts folder named Create_tables.sql file. It's OK to import it.
Second step: Open the Libraries folder under the phpMyAdmin folder, locate the file named config.default.php, use the text Editing tool (not recommended with Notepad, suggest using tools such as Dreamweaver) to open the file. To modify it.
The modified content is not continuous, please modify it manually, do not copy.
Before the change:
$cfg [' Servers '] [$i] [' pmadb '] = ";
$cfg [' Servers '] [$i] [' bookmarktable '] = ";
$cfg [' Servers '] [$i] [' relation '] = ";
$cfg [' Servers '] [$i] [' table_info '] = ";
$cfg [' Servers '] [$i] [' table_coords '] = ";
$cfg [' Servers '] [$i] [' pdf_pages '] = ";
$cfg [' Servers '] [$i] [' column_info '] = ";
$cfg [' Servers '] [$i] [' history '] = ";
$cfg [' Servers '] [$i] [' designer_coords '] = ";
$cfg [' Servers '] [$i] [' tracking '] = ";
What you have modified:
$cfg [' Servers '] [$i] [' pmadb '] = ' phpmyadmin ';
$cfg [' Servers '] [$i] [' bookmarktable '] = ' pma_bookmark ';
$cfg [' Servers '] [$i] [' relation '] = ' pma_relation ';
$cfg [' Servers '] [$i] [' table_info '] = ' pma_table_info ';
$cfg [' Servers '] [$i] [' table_coords '] = ' pma_table_coords ';
$cfg [' Servers '] [$i] [' pdf_pages '] = ' pma_pdf_pages ';
$cfg [' Servers '] [$i] [' column_info '] = ' pma_column_info ';
$cfg [' Servers '] [$i] [' history '] = ' pma_history ';
$cfg [' Servers '] [$i] [' designer_coords '] = ' pma_designer_coords ';
$cfg [' Servers '] [$i] [' tracking '] = ' pma_tracking ';
Step three: Log out of phpMyAdmin and log back in. Done!