1

When I go to databases in phpPgAdmin it says that there are 0 databases. Yet, if I run SELECT datname FROM pg_database it displays all databases OK. I would like to be able to 'explore' tables and databases.

sly
  • 111
  • 2

1 Answers1

0

I had to set the following line of the phpPgAdmin config file (which was duplicate in my config) to

$conf['owned_only'] = false;
dvtoever
  • 101