How do I enable php to work with postgresql?

PhpWindowsPostgresqlPdo

Php Problem Overview


<?php

try {
   $dbh = new PDO('pgsql:host=localhost;port=5432;dbname=###;user=###;password=##');
   echo "PDO connection object created";
}
catch(PDOException $e)
{
      echo $e->getMessage();
}

?>

I get the error message "Could Not Load Driver"

Php Solutions


Solution 1 - Php

You need to install the pgsql module for php. In debian/ubuntu is something like this:

sudo apt-get install php5-pgsql

Or if the package is installed, you need to enable de module in php.ini

extension=php_pgsql.dll (windows)
extension=php_pgsql.so (linux)

Greatings.

Solution 2 - Php

Try this:

Uncomment the following in php.ini by removing the ";"

;extension=php_pgsql.dll

Use the following code to connect to a postgresql database server:

pg_connect("host=localhost dbname=dbname user=username password=password")
    or die("Can't connect to database".pg_last_error());

Solution 3 - Php

For debian/ubuntu install

sudo apt-get install php-pgsql

Solution 4 - Php

  • SO: Windows/Linux
  • HTTP Web Server: Apache
  • Programming language: PHP

Enable PHP to work with PostgreSQL in Apache

In Apache I edit the following configuration file: C:\xampp\php.ini

I make sure to have the following lines uncommented:

extension=php_pgsql.dll	
extension=php_pdo_pgsql.dll

Finally restart Apache before attempting a new connection to the database engine.


Also, I leave my code that ensures that the connection is unique:

private static $pdo = null;

public static function provideDataBaseInstance() {
    if (self::$pdo == null) {
        $dsn = "pgsql:host=" . HOST .
               ";port=5432;dbname=" . DATABASE .
               ";user=" . POSTGRESQL_USER .
               ";password=" . POSTGRESQL_PASSWORD;
        try {
            self::$pdo = new PDO($dsn);
        } catch (PDOException $exception) {
            $msg = $exception->getMessage();
            echo $msg . 
                 ". Do not forget to enable in the web server the database 
                  manager for php and in the database instance authorize the 
                  ip of the server instance if they not in the same 
                  instance.";
        }
    }
    return self::$pdo;
}

GL

Solution 5 - Php

I have to add in httpd.conf this line (Windows):

LoadFile "C:/Program Files (x86)/PostgreSQL/8.3/bin/libpq.dll"

Solution 6 - Php

just install the database driver:

> apt-get install php5-pgsql php5-mysql php5-sqlite ... and so on ...

and be happy!

Solution 7 - Php

I installed PHP on windows IIS using Windows Platform Installer (WPΙ). WPΙ creates a "PHP Manager" tool in "Internet Information Services (IIS) Manager" console. I am configuring PHP using this tool.

in http://php.net/manual/en/pdo.installation.php says:

PDO and all the major drivers ship with PHP as shared extensions, and simply need to be activated by editing the php.ini file: extension=php_pdo.dll

so i activated the extension using PHP Manager and now PDO works fine

PHP manager simple added the following two lines in my php.ini, you can add the lines by hand. Of course you must restart the web server.

[PHP_PDO_PGSQL]
extension=php_pdo_pgsql.dll

Solution 8 - Php

You need to isntall pdo_pgsql package

Solution 9 - Php

I and many other shave spent way too long on this - this needs a massive improvement. After spending hours, I finally copied php_pgsql.dll from php's ext directory to Apache24's root directory (wherever you installed it) and finally Apache was able to get the php/pg modules and dlls loaded.

Solution 10 - Php

$dbh = new PDO('pgsql:host=localhost;port=5432;dbname=###;user=###;password=##');

For PDO type connection uncomment

extension=php_pdo_pgsql.dll and comment with

;extension=php_pgsql.dll

$dbh = pg_connect("host=localhost dbname=### user=### password=####");

For pgconnect type connection comment

;extension=php_pdo_pgsql.dll and uncomment

extension=php_pgsql.dll

Both the connections should work.

Solution 11 - Php

in my case there are 2 php.ini, I had to uncomment extension pdo_pgsql in both php.ini

  1. in php folder
  2. in apache folder

both inside in wamp folder

Solution 12 - Php

Because some answers seem outdated, if you are working with xampp, go to the php folder inside your xampp installation. In it open the php.ini file and uncomment

extension=pdo_pgsql
extension=pdo_sqlite

Remove the ; before these lines.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionAaronView Question on Stackoverflow
Solution 1 - PhpJorge OlivaresView Answer on Stackoverflow
Solution 2 - PhpSachin PuriView Answer on Stackoverflow
Solution 3 - PhpNathan BView Answer on Stackoverflow
Solution 4 - PhpBraian CoronelView Answer on Stackoverflow
Solution 5 - PhpWojciech LegierskiView Answer on Stackoverflow
Solution 6 - PhpaugustowebdView Answer on Stackoverflow
Solution 7 - PhpPanagiotis PiperopoulosView Answer on Stackoverflow
Solution 8 - Phprinat.ioView Answer on Stackoverflow
Solution 9 - Phpuser5699115View Answer on Stackoverflow
Solution 10 - Phpkavya View Answer on Stackoverflow
Solution 11 - PhprtfmplizView Answer on Stackoverflow
Solution 12 - PhpYouzefView Answer on Stackoverflow