You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looks to be fixed by #17304. However I also noticed that parameter has not been added to config.sample.inc.php which would be useful for new installs.
It was not fixed, #17304 makes PMA ignore hide_connection_errors even if it's set (it should be also fixed using solution mentioned by the issue author)
Describe the bug
Error
Undefined array key "hide_connection_errors"even if$cfg["Servers"][$i]["hide_connection_errors"] = true;exists in config.inc.phpExpected behavior
No error
Server configuration
Proposed solution: add 'hide_connection_errors' to array in libraries\classes\Config.php
line 1443:
$shared = [
'port',
'socket',
'compress',
'ssl',
'ssl_key',
'ssl_cert',
'ssl_ca',
'ssl_ca_path',
'ssl_ciphers',
'ssl_verify',
'hide_connection_errors',
];
The text was updated successfully, but these errors were encountered: