Re: Accessing Postgres db from apache using PHP - Mailing list pgsql-novice

From Jean-Christian Imbeault
Subject Re: Accessing Postgres db from apache using PHP
Date
Msg-id 3F24CEDB.6040300@mega-bucks.co.jp
Whole thread Raw
In response to Re: Accessing Postgres db from apache using PHP  (christoph.dellavalle@goetheanum.ch)
Responses Re: Accessing Postgres db from apache using PHP  ("bruce" <bedouglas@earthlink.net>)
List pgsql-novice
>i then do a:
>    $tmp = "host=localhost dbname=gforge user=gforge
>password=gforge";
>    $conn = @pg_connect($tmp);


Just jumping in here but don't you need to specify the port?

$conn = pg_connect("host=localhost port=5432 dbname=gforge user=gforge");

Also, don't use the @, that way you can see any useful error messages
that are displayed :)

Oh, and you did change the conf file to let postgres use TCP/IP?

tcpip_socket = true
port=5432

Jc



pgsql-novice by date:

Previous
From: christoph.dellavalle@goetheanum.ch
Date:
Subject: Re: Accessing Postgres db from apache using PHP
Next
From: "bruce"
Date:
Subject: Re: Accessing Postgres db from apache using PHP