From: Stephen <web...@we...> - 2001-10-31 02:28:10
|
I don\'t know how busy this list is...but I\'m having trouble getting phppgadmin to work at all. Description: When I point my browser at <mydomain>/phpPgAdmin/index.php all I see is the two frames with the main frame containing four old links to the greatbridge.org site and a link to postgresql.org. I assume this is the default if it doesn\'t get a connection to the DB. In conf.inc.php I have: $cfgServers[1][\'local\'] = false; $cfgServers[1][\'host\'] = \'<myremotehost>\'; $cfgServers[1][\'port\'] = \'\'; $cfgServers[1][\'adv_auth\'] = true; $cfgServers[1][\'stduser\'] = \'\'; $cfgServers[1][\'stdpass\'] = \'\'; $cfgServers[1][\'user\'] = \'\'; $cfgServers[1][\'password\'] = \'\'; $cfgServers[1][\'only_db\'] = \'\'; I\'ve tried putting \"postgres\" into the \'user\' field, and I\'ve put in and taken out the \'port\' (default port). I\'ve made my own script that connect no problem: $connection = pg_connect(\"host=<myremotehost> dbname=test user=postgres \") or die(\"Couldn\'t make connection.\"); Please let me know how to get this working. This is a small step in a huge project I\'m working on, and I don\'t want to set up the db server on the command line, if I can avoid it. Thanks, Stephen |