I'm trying to connect with PostgreSQL database through Laravel in order to do a php artisan migrate but doesn't seem to be directed since it's reading the database name of MySQL.
Here are the commands from database.php:
'connections' => array(      'sqlite' => array(         'driver'   => 'sqlite',         'database' => __DIR__.'/../database/production.sqlite',         'prefix'   => '',     ),      'mysql' => array(         'driver'    => 'mysql',         'host'      => 'localhost',         'database'  => 'database',         'username'  => 'root',         'password'  => '',         'charset'   => 'utf8',         'collation' => 'utf8_unicode_ci',         'prefix'    => '',     ),      'pgsql' => array(         'driver'   => 'pgsql',         'host'     => 'localhost',         'database' => 'postgres',         'username' => 'postgres',         'password' => 'root',         'charset'  => 'utf8',         'prefix'   => '',         'schema'   => 'public',     ),      'sqlsrv' => array(         'driver'   => 'sqlsrv',         'host'     => 'localhost',         'database' => 'database',         'username' => 'root',         'password' => '',         'prefix'   => '',     ),  ),   If I remove the MySQL paths I'll get:
[InvalidArgumentException] Database [mysql] not configured.    php.ini file was checked in Apache, WAMP (from php folder) and PostgreSQL. The extension_dir is correct as it being -> extension_dir = "c:/wamp/bin/php/php5.5.12/ext/"  The extension=pdo_pgsql.dll and extension=pgsql.dll are uncommented.
Done the PATH trick in the 'System Variables' and rebooted. No chance. 
Thanks for the help so far.
These are my drivers php_pdo_driver.h & php_pdo.h from C:\Program Files (x86)\PostgreSQL\EnterpriseDB-ApachePHP\php\SDK\include\ext\pdo
Information from phpinfo:
PHP Version 5.5.12
Compiler MSVC11 (Visual C++ 2012) Configure Command cscript /nologo configure.js "--enable-snapshot-build" "--disable-isapi" "--enable-debug-pack" "--without-mssql" "--without-pdo-mssql" "--without-pi3web" "--with-pdo-oci=C:\php-sdk\oracle\x64\instantclient10\sdk,shared" "--with-oci8=C:\php-sdk\oracle\x64\instantclient10\sdk,shared" "--with-oci8-11g=C:\php-sdk\oracle\x64\instantclient11\sdk,shared" "--enable-object-out-dir=../obj/" "--enable-com-dotnet=shared" "--with-mcrypt=static" "--disable-static-analyze" "--with-pgo"
Be sure to configure the 'default' key in app/config/database.php
For postgres, this would be 'default' => 'postgres',
If you are receiving a [PDOException] could not find driver error, check to see if you have the correct PHP extensions installed.  You need pdo_pgsql.so and pgsql.so installed and enabled.  Instructions on how to do this vary between operating systems.  
For Windows, the pgsql extensions should come pre-downloaded with the official PHP distribution.  Just edit your php.ini and uncomment the lines extension=pdo_pgsql.so and extension=pgsql.so
Also, in php.ini, make sure extension_dir is set to the proper directory.  It should be a folder called extensions or ext or similar inside your PHP install directory.
Finally, copy libpq.dll from C:\wamp\bin\php\php5.*\ into C:\wamp\bin\apache*\bin and restart all services through the WampServer interface.
If you still get the exception, you may need to add the postgres \bin directory to your PATH:
PATH entry.This should hopefully resolve any problems. For more information see:
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With