I have php-5.3.6 and postgresql installed in my Fedora 13. But it seems that postgresql support is not enabled in php. My phpinfo() page doesn’t show any PostgreSQL section, neither pdo_pgsql section.
I checked /etc/php.ini, and it shows that PostgresSQL is enabled.
[root@localhost ~]# cat /etc/php.ini | grep ^pgsql pgsql.allow_persistent = On pgsql.auto_reset_persistent = Off pgsql.max_persistent = -1 pgsql.max_links = -1 pgsql.ignore_notice = 0 pgsql.log_notice = 0
Is there any way I can add postgresql support to php without recompiling it from the source? Is there any other files I need to make some changes?
Advertisement
Answer
Run yum install php-pgsql php-pdo_pgsql
to install the PHP Postgres package.