ian docherty wrote: > My pg_hba.conf file contains the following. > > local all trac password
"local" defines authentication for UNIX domain socket connections... > My database setup in my trac config file is > > database = postgres://trac:[EMAIL PROTECTED]/payex ...but you're trying to connect on default TCP port of localhost. You need to configure pg_hba.conf for remote connections (records start with "host"). Also, check that your PostgreSQL server listens on TCP host/port you're connecting to from Trac. HTH, Sergey. _______________________________________________ Trac mailing list [email protected] http://lists.edgewall.com/mailman/listinfo/trac
