You don't have permission to access /phpmyadmin/ on this server
Posted by: tkemm@ptd.net (---.29.195.173.res-cmts.blo.ptd.net)
Date: September 30, 2013 10:18PM

When I go to localhost and click on phpmyadmin I get the following msg

You don't have permission to access /phpmyadmin/ on this server.

and don't know how to fix this. I have followed the installation process from the WordPress installation guide. My system is 64 bit and running Windows 8.

I installed it previously on a 32 bit system running windows XP sp3 and the installation did not have any errors or problems. Any help would be appreciated.

Thanks

Options: ReplyQuote
Re: You don't have permission to access /phpmyadmin/ on this server
Posted by: manoj_12320 (117.211.147.---)
Date: October 01, 2013 09:09AM

hi ....all i have same problem here

i want to access my site, witch is installed on my c:/wamp/www/mysite...from client machine from same LAN

my machine ip is 192.168.21.200 and client ip machine is 192.168.21.187

Both machine configuration as follows:

i installed Wampserver 2.4 on both machine windows 7.
all services started, icon showing green, status server online.

and also done change in httpd.conf file:- Allow All


Please help me out.............. thanks in advance.......... Good day

Options: ReplyQuote
Re: You don't have permission to access /phpmyadmin/ on this server
Posted by: RiggsFolly (---.ppp.as43234.net)
Date: October 01, 2013 10:56AM

tkemm,

RE: You don't have permission to access /phpmyadmin/ on this server.


Edit this file c:\wamp\alias\phpmyadmin.conf

If you are running Apache 2.2.x
Change this section from
Allow from 127.0.0.1
TO
Allow from 127.0.0.1 localhost ::1

If you are running Apache 2.4.x
Change from
   Order Deny,Allow
    Deny from all
    Allow from 127.0.0.1
    Allow from ::1
    Allow from localhost
To
    Require local


Then restart the Apache service and try phpmyadmin again

Options: ReplyQuote
Re: You don't have permission to access /phpmyadmin/ on this server
Posted by: RiggsFolly (---.ppp.as43234.net)
Date: October 01, 2013 11:04AM

manoj,

You dont need WAMPServer on both machines, just the one that you want to be the server.


So on the server machine do this:

Edit httpd.conf ( using the wampmanager menus )

Find this part of the file
#   onlineoffline tag - don't remove
     Order Deny,Allow
     Deny from all
     Allow from 127.0.0.1
     Allow from ::1
     Allow from localhost
</Directory>
And change to

#   onlineoffline tag - don't remove
    Require local
</Directory>


# Setup security for my site
<Directory "d:/wamp/www/mysite">
    Options Indexes FollowSymLinks
    AllowOverride All
# Any other requirements your site may have


    Require local

# Allow access from anybody on my subnet
    Require ip 192.168.21

# Or alternatively just the one ip ( dont use both these!!!!
    Require ip 192.168.21.187

<Directory 

Options: ReplyQuote


Sorry, only registered users may post in this forum.