I have just installed the postgreSQL on windows 7. I am trying to integrate postgreSQL with WAMP server. For this i have done the following changes in httpd.conf and php.ini fi
libpq.dll
from wamp\bin\php\phpX.X.X
to wamp\bin\apache\Apache2.2*\bin
. And restart the Wampserver.C:\wamp\apps
So the path will be, C:\wamp\apps\phpPgAdmin-5.1
.Create a file called phppgadmin.conf
in C:\wamp\alias
. And copy paste the following :
Alias /phppgadmin "C:/wamp/apps/phpPgAdmin-5.1/"
Options Indexes FollowSymLinks MultiViews AllowOverride all Order Deny,Allow Allow from all
Left Click on the Wampserver Tray icon. Navigate to PHP > PHP extension. Then enable this
a. php_pgsql b. php_pdo_pgsql extension.
Open C:\wamp\apps\phpPgAdmin-5.1\conf\config.inc.php
,
a. find $conf['servers'][0]['host'] = '';
change to $conf['servers'][0]['host'] = 'localhost';
b. find $conf['extra_login_security'] = true;
change true
to false
Restart All service
Go to http://localhost/phppgadmin/
and try to login.
Default Login credentials are
references :