DisableWarning in phpMyAdmin

ditto

Verified User
Joined
Apr 27, 2009
Messages
2,354
This is a feature request that DirectAdmin disable warning in phpMyAdmin configuration. As default it will show this warning in phpMyAdmin:

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

When running shared hosting servers, my customers will often ask about this warning. Therfor it is better for me if the warning is not shown at all, so that we do not have to explain this to customers.

Please add this line in /var/www/html/phpMyAdmin-3.4.10.2-all-languages/config.inc.php:

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

In meantime I add this line manually every time I upgrade phpMyAdmin, but it would be nice if it was there by default. Thanks.
 
You should put your custom config in custom folder.. so.. custombuild will overwrite your config.inc.php everytime you do an update of phpmyadmin.

Regards
 
Hi all!

How would one go about putting the "custom config in custom folder" so that the changes are now subsequently overwritten?

Thank you!
 
Code:
mkdir -p /usr/local/directadmin/custombuild/custom/phpmyadmin
cp /var/www/html/phpMyAdmin/config.inc.php /usr/local/directadmin/custombuild/custom/phpmyadmin/

Regards
 
Back
Top