How to fix this phpMyAdmin problem?

darkbear

Verified User
Joined
Jan 31, 2013
Messages
60
When I login to my phpmyadmin and show:
The additional features for working with linked tables have been deactivated. To find out why click here.

please help.
 
What phpMyAdmin version are you running? I don't have that line of information in my phpMyAdmin. You should upgrade to the newest version:

Code:
cd /usr/local/directadmin/custombuild
./build update
./build versions
./build phpmyadmin

When you have the newest version installed by DirectAdmin, you should have this line of information in phpMyAdmin:

The phpMyAdmin configuration storage is not completely configured, some extended features have been deactivated. To find out why click here.

That is normal, and it's nothing wrong about it. To remove that line of information, you can edit this file:

/var/www/html/phpMyAdmin-3.5.6-all-languages/config.inc.php

At the bottom, create a new line before ?> in that new line you add this:

Code:
$cfg['PmaNoRelation_DisableWarning'] = true;
 
What phpMyAdmin version are you running? I don't have that line of information in my phpMyAdmin. You should upgrade to the newest version:

Code:
cd /usr/local/directadmin/custombuild
./build update
./build versions
./build phpmyadmin

When you have the newest version installed by DirectAdmin, you should have this line of information in phpMyAdmin:



That is normal, and it's nothing wrong about it. To remove that line of information, you can edit this file:

/var/www/html/phpMyAdmin-3.5.6-all-languages/config.inc.php

At the bottom, create a new line before ?> in that new line you add this:

Code:
$cfg['PmaNoRelation_DisableWarning'] = true;

thank you , i just use:
$cfg['PmaNoRelation_DisableWarning'] = true;

and my problem was gone, it that mean I don't need to use:
PHP:
/* Storage database and tables */
 $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]['table_uiprefs'] = 'pma_table_uiprefs';
 $cfg['Servers'][$i]['tracking'] = 'pma_tracking';
 $cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords';
 $cfg['Servers'][$i]['userconfig'] = 'pma_userconfig';
 $cfg['Servers'][$i]['recent'] = 'pma_recent';
/* Contrib / Swekey authentication */
 $cfg['Servers'][$i]['auth_swekey_config'] = '/etc/swekey-pma.conf';
 
If I want to use that function, the following setting is right?

PHP:
 $cfg['Servers'][$i]['controluser'] = 'da_admin';
 $cfg['Servers'][$i]['controlpass'] = 'thepassword';
 
If you have installed phpMyAdmin by using custombuild, then your settings should be correct out of the box, and no need to change anything. If you have installed phpMyAdmin manually without using custombuild, then I can't advice. You did not answer my question about wich version of phpMyAdmin you are using? Please use custombuild to upgrade to newest version, and then it should be correct out of the box.
 
Last edited:
If you have installed phpMyAdmin by using custombuild, then your settings should be correct out of the box, and no need to change anything. If you have installed phpMyAdmin manually without using custombuild, then I can't advice. You did not answer my question about wich version of phpMyAdmin you are using? Please use custombuild to upgrade to newest version, and then it should be correct out of the box.

For some reason I need to keep my Phpmyadmin is: version 3.3.10.5
and I install it manually.

thank you
 
Back
Top