Re: Can't connect to 7.4 DB - Mailing list pgsql-php

From scott.marlowe
Subject Re: Can't connect to 7.4 DB
Date
Msg-id Pine.LNX.4.33.0402120827550.4413-100000@css120.ihs.com
Whole thread Raw
In response to Can't connect to 7.4 DB  (Michael Hanna <taojones@sympatico.ca>)
Responses Re: Can't connect to 7.4 DB  (Michael Hanna <taojones@sympatico.ca>)
List pgsql-php
OK, here's a little trick you may not be aware of.

pg_connect("dbname=mydb user=stan");

will open a local unix domain socket.

pg_connect("host=127.0.0.1 dbname=mydb user=stan");

will open a local TCP/IP connection on the loopback interface.

In order for this to work, your postgresql.conf must have this line
changed:
#tcpip_socket = false
to
tcpip_socket = true

and your pg_hba.conf needs a line like this:

host    all         all         127.0.0.1         255.0.0.0   trust

So it's likely the "secure by default" mentality of postgresql that's
biting you here.


pgsql-php by date:

Previous
From: Michael Hanna
Date:
Subject: Can't connect to 7.4 DB
Next
From: Joshua Drake
Date:
Subject: Re: Can't connect to 7.4 DB