phpPgAdmin: "Identification disabled for security reasons"

1

When installing phpPgAdmin on Linux, the following message appears: "Identification disabled for security reasons" . What can it be?

    
asked by anonymous 12.01.2018 / 03:04

1 answer

1

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.

    
12.01.2018 / 03:10