Link to home
Start Free TrialLog in
Avatar of error77
error77

asked on

404 Loading phpPgAdmin

Hi all,

I'm trying to load phpPgAdmin on my windows pc with no luck.

Error is:

Not Found

The requested URL /phppgadmin/ was not found on this server.

I'm done the config.inc.php, the alias and postgres is installed and phppgadmin is in wamp\apps directory.

Can anyone think out something I might have missed please?

thanks
Avatar of error77
error77

ASKER

Anyone please?
Avatar of arober11
Have you added a Directory and Alias entry to your httpd.conf
Avatar of error77

ASKER

I have this:

<Directory />
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
</Directory>

and

DocumentRoot "c:/wamp/www/"

phpMyAdmin works fine and it has no entry on Wamp Apache httpd.conf

Is this what you mean't?

My Alias for phpPgAdmin is:

Alias /phpmyadmin "c:/wamp/apps/phppgadmin/"

# to give access to phpmyadmin from outside
# replace the lines
#
#        Order Deny,Allow
#      Deny from all
#      Allow from 127.0.0.1
#
# by
#
#        Order Allow,Deny
#   Allow from all
#

<Directory "c:/wamp/apps/phppgadmin/">
    Options Indexes FollowSymLinks MultiViews
    AllowOverride all
        Order Deny,Allow
      Deny from all
      Allow from 127.0.0.1
</Directory>

It's a copy of the phpMyAdmin one ... just changed to phppgadmin



Avatar of error77

ASKER

Any other suggestions please?
ASKER CERTIFIED SOLUTION
Avatar of arober11
arober11
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of error77

ASKER

I cannot believe I missed that!
Thanks very much :o)