2

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?

pHoutved
  • 201

1 Answers1

8

The settings can be set in the phpmyadmin gui at http://localhost/phpmyadmin/prefs_forms.php?form=Features

pHoutved
  • 201