cd /usr/local/directadmin/custombuild
./build update
./build versions
./build phpmyadmin
The phpMyAdmin configuration storage is not completely configured, some extended features have been deactivated. To find out why click here.
$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;
/* 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 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.
could some one help!?