ok i changed that line and i had already changed this one:
# JTA - original line
#host all all 127.0.0.1 255.255.255.255 ident sameuser
to this:
# JTA - my attempt to enable phppgadmin login
host all all 127.0.0.1 255.255.255.255 md5
even without your change sxooter, i seemed to have success logging into psql and viewing my tables. The other change I made also let me login to postgresql using phppgadmin. but here is my question: WHY CAN I NOT SEE MY DATABASE?
I created a database called db1 using psql as user postgres. i then granted all privileges to user1 on db db1 like this:
GRANT ALL PRIVILEGES ON DATABASE db1 TO user1;
When I login using phppgadmin i am permitted to login but no databases appear. I see a folder with my server's name there and when i click on the server name the right frame loads and says "NO DATABASES FOUND".
what do i need to do to get this working?