あくまでローカル環境でテストするときのみ使用する場合の対応です。
コマンドラインから
>psql -U postgres
password:*****
では入れるのにphpPgAdminで上記ログインができなかったのですが、
phpPgAdmin>FAQ>login
のところに書いてありました。
Question #4
For some users I get a “Login disallowed for security” message.
Answer: Logins via phpPgAdmin with no password or certain usernames (pgsql, postgres, root, administrator) are denied by default. Before changing this behaviour (setting $conf['extra_login_security'] to false in the config.inc.php file) please read the PostgreSQL documentation about client authentication and understand how to change PostgreSQL's pg_hba.conf to enable passworded local connections.
とのことで、
config.inc.php
$conf['extra_login_security'] = false;
にすることでログインできました。
セキュリティ上好ましくないと思われるので、あくまでローカル環境でテストするときのみ使用する場合の対応です。