How to install PostgreSQL extension for PDO in Linux?

9,105

In order to enable pgsql support for PDO, PHP needs to be built with the configure option --with-pdo-pgsql[=DIR] where DIR is the path to the postgresql install directory or pg_config.

Alternatively, PECL can be used to install PDO drivers: root@hostname# pecl install pdo_pgsql

However, from your reference to "easy apache", I suspect you're using cPanel and a hosting provider, in which case your question is probably better directed towards the support team of the company who you're paying.

Also, you should probably mention this and tag your question appropriately with 'cpanel' to make your question more likely to be found by people who have experience with your environment.

Share:
9,105
Jonas
Author by

Jonas

Updated on September 17, 2022

Comments

  • Jonas
    Jonas over 1 year

    I have the VPS. I can build my PHP version using Easy Apache. I can find the option for PDO support for MySQL, SQLite. But I don't have any option of PDO pgsql driver.

    How can I enable that?

    It says that PECL can load other drivers but how can I install that?