cant conect to dynamic host-URL

From: Dirk Becker <becker(at)adocom(dot)de>
To: pgsql-php(at)postgresql(dot)org
Subject: cant conect to dynamic host-URL
Date: 2006-11-01 18:36:36
Message-ID: 4548E934.5090904@adocom.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-php

Hi there, ive got a dynamic URL like myname.dyndns.org which links to my
server
where my postgres database runs. The Problem is that the Connection
fails with error:
"Warning: pg_connect(): Unable to connect to PostgreSQL server: unknown
host name: adocom.dyndns.org"

Now, if i ping my dynamic address and use the resulting IP for the
Connection all works fine.
I dont know where my i did something wrong, i use an Java-Applet which
connects also with the dynamic Address and works fine too. :(

Here is my php-Code i use:

// Option-class which holds some information
class Option {
var $host = "myname.dyndns.org"; // Adresse des DBMS-Servers
var $port = "5432"; // Port auf dem
das DBMS laeuft
var $dbname = "Database"; // Name der Datenbank
var $user = "postgres"; // DBMS Benutzer
var $passwd = "secret"; // DBMS Passwort
}

// Connection in index.php
$conn = pg_connect("host=".$OptObj->host." port=".$OptObj->port."
dbname=".$OptObj->dbname." user=".$OptObj->user."
password=".$OptObj->passwd);

Responses

Browse pgsql-php by date

  From Date Subject
Next Message Brew 2006-11-01 21:11:48 Re: cant conect to dynamic host-URL
Previous Message Amal burman 2006-10-26 18:11:47 PostgreSQL locking from PHP scripts