When setting up wamp locally to access phpmyadmin, the prompt "You don't have permission to access /phpmyadmin/ on this server." appears.
How to solve the problem of being unable to enter phpmyadmin?
Solution:
1. We find the wamp\alias\phpmyadmin.conf file in the software installation directory, as shown in the figure:
2. Open it with Notepad, find the code
Options Indexes FollowSymLinks MultiViews AllowOverride all Order Deny,Allow Deny from all Allow from 127.0.0.1
and changeDeny from all
toAllow from all
, And save it as shown in the picture
3. After saving, restart all services and open http://localhost/phpmyadmin/ again. When you can see the page as shown in the picture, that is Represents completion.
The above content is for reference only!
Recommended learning:phpmyadmin tutorial
The above is the detailed content of How to solve wamp's inability to enter phpmyadmin?. For more information, please follow other related articles on the PHP Chinese website!