On Wed, Jul 9, 2014 at 5:04 AM, basti <mailingl...@unix-solution.de> wrote:
> Hello my pg_hab.conf has this entry:
>
> host    all             all             127.0.0.1/32            md5
>
> When I try to use PHP to connect to the Database I get
>
> "postgres password authentication failed for user ..."
>
> The PHP-code looks like
>
>
> global $dbhost, $dbuser, $dbpass, $dbname, $use_pgsql, $dbconn;
>
> if ($use_pgsql)
> {
>         $connect = "host=$dbhost user=$dbuser password=$dbpass
> dbname=$dbname";
>                 echo $connect;
>         if (!($dbconn = pg_connect($connect)))
>         {
>                 open_page();
>                 ErrSQL("Unable to connect to database.");
>         }


This is not proper error handling. Use the pg_* functions that report
the actual error, not some string you made on your own.


-- 
Sent via pgsql-general mailing list (pgsql-general@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general

Reply via email to