I am getting annoyed by error reports about deprecated in phpmyadmin on php8
According to https://docs.phpmyadmin.net/en/latest/config.html
All configurable data is placed in config.inc.php in phpMyAdmin’s toplevel directory.
I have tried to create the file /usr/share/phpmyadmin/config.inc.php with this
<?php
$cfg['SendErrorReports'] = 'never';
But it doesn't seem to be loaded
The default setting is in:
/usr/share/phpmyadmin/libraries/config.default.php
If I change it in there it works but I guess the file will be overwritten with next upgrade.
Is there a better or correct way to set the config?
