When installing phpPgAdmin on Linux, the following message appears: "Identification disabled for security reasons" . What can it be?
When installing phpPgAdmin on Linux, the following message appears: "Identification disabled for security reasons" . What can it be?
I've been able to solve it and I'm sharing the solution here.
In the phpPgAdmin installation directory (usually the path is: /usr/share/phppgadmin/conf/config.inc.php ), open the file named < strong> config.inc.php and change the following line:
From:
$conf['extra_login_security'] = true;
To:
$conf['extra_login_security'] = false;
After the changes are made, restart the web server.