From: | "chris smith" <dmagick(at)gmail(dot)com> |
---|---|
To: | "belfegor666(at)gazeta(dot)pl" <belfegor666(at)gazeta(dot)pl> |
Cc: | pgsql-php(at)postgresql(dot)org |
Subject: | Re: PostgreSQL 8.1 + PHP5.1.x/4.4.2 + Apache 2.0.55/1.3.34 PROBLEM!! PLEASE HELP |
Date: | 2006-04-27 08:46:58 |
Message-ID: | 3c1395330604270146s272bc289l8275d575fdd01493@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-php |
On 4/27/06, belfegor666(at)gazeta(dot)pl <belfegor666(at)gazeta(dot)pl> wrote:
> Help! I was trying to make an installation of PHP 5.1.2 + Apache
> 2.0.55 + PostgreSQL 8.1 on Windows 2003 Server, and I'm stuck. I
> got PHP to work with Apache quite smoothly, so did I marry PHP with
> PostgreSQL - scripts connecting to the database work fine from
> windows command line, except that the following code:
>
> if (extension_loaded("php_pgsql")) {
> echo "PGSQL loaded!";
> }
>
> returns no message. Still database queries work fine. Trouble starts
> when I try to open a page in my browser - then I get an error
> message like this:
>
> Error: call to udefined function pg_connect()...
>
> I changed the php.ini file a billion times, trying to figure out
> what to set in the "extension_dir" and "extension=php_pgsql.dll"
> lines, and I tried at least as many times to change apache's
> httpd.conf file so that the php module is loaded properly. And it
> is, as far as I'm concerned - the phpinfo() page shows without a
> problem. One peculiar thing about it is that in the "Loaded
> modules" section (don't remember the exact name) there's absolutely
> no sign of the pgsql module.
Copied straight from my reply on the general list.
you could change the first check to:
if (!function_exists('pg_connect')) {
die("no pg_connect");
}
What does:
print_r(get_loaded_extensions());
show?
Anything regarding pgsql?
Does your server keep logs? Maybe something in there will give you
some ideas about what's going on..
--
Postgresql & php tutorials
http://www.designmagick.com/
From | Date | Subject | |
---|---|---|---|
Next Message | Neil Saunders | 2006-04-27 08:48:31 | Re: PostgreSQL 8.1 + PHP5.1.x/4.4.2 + Apache 2.0.55/1.3.34 PROBLEM!! PLEASE HELP |
Previous Message | belfegor666 | 2006-04-27 07:02:31 | PostgreSQL 8.1 + PHP5.1.x/4.4.2 + Apache 2.0.55/1.3.34 PROBLEM!! PLEASE HELP |