Re: Can't connect to 7.4 DB

Поиск
Список
Период
Сортировка
Искать
От
Joshua Drake
Тема
Re: Can't connect to 7.4 DB
Дата
Msg-id
402B9C4F.2070802@commandprompt.com
Ответ на
Can't connect to 7.4 DB (Michael Hanna)
Список
Дерево обсуждения
PHP/PostGreSQL Articles David Costa <geeks@dotgeek.org>
Can't connect to 7.4 DB Michael Hanna <taojones@sympatico.ca>
Re: Can't connect to 7.4 DB Joshua Drake <jd@commandprompt.com>
Re: Can't connect to 7.4 DB "scott.marlowe" <scott.marlowe@ihs.com>
Re: Can't connect to 7.4 DB Michael Hanna <taojones@sympatico.ca>
Re: PHP/PostGreSQL Articles "Nick Fankhauser" <nickf@ontko.com>
Hello,

What does the PostgreSQL log say? Is it even getting to the server? What 
abour the apache error log? Does it reflect an error?

Sincerely,

Joshua D. Drake


Michael Hanna wrote:
> Hi this php code:
> 
> 
>     
>     // add to DB
>     
>     // database access parameters
>     $host = "localhost";
>     $user = "postgres";
>     $pass = "postgres";
>     $db = "cosc3p94";
>     
>     // open a connection to the database server
>     $connection = pg_connect("host=$host dbname=$db user=$user 
> password=$pass");
>     
>     if (!$connection)
>     {
>             die("Could not open connection to database server");
>     }
>     
> 
>     ...
> 
> results in:
> 
> Could not open connection to database server
> 
> and I'm not sure why. The web browser, web server, and database are on 
> the same machine..
> 
> I checked the pg_hba.conf and it says this:
> 
> # TYPE  DATABASE    USER        IP-ADDRESS        IP-MASK           METHOD
> 
> local   all         all                                             trust
> # IPv4-style local connections:
> host    all         all         127.0.0.1         255.255.255.255   trust
> # IPv6-style local connections:
> host    all         all         ::1               
> ffff:ffff:ffff:ffff:ffff:ffff:ff$
> 
> 
> which is untouched from the default settings...
> 
> Michael
> 
> 
> ---------------------------(end of broadcast)---------------------------
> TIP 8: explain analyze is your friend

В списке pgsql-php по дате отправления
От: scott.marlowe
Дата:
Сообщение: Re: Can't connect to 7.4 DB
От: Michael Hanna
Дата:
Сообщение: Re: Can't connect to 7.4 DB
FAQ