When using phpmyadmin externally, I found the following prompt:
You don't have permission to access /phpmyadmin/ on this server.
Solution:
Open the following file:
c:\wamp\alias\phpmyadmin.conf //This is the content of your wamp installation directory
Modify it like this:
<Directory "c:/wamp/apps/phpmyadmin3.4.5/"> Options Indexes FollowSymLinks MultiViews AllowOverride all Order Deny,Allow Allow from all </Directory>
Your original configuration should be like this:
<Directory "c:/wamp/apps/phpmyadmin3.4.5/"> Options Indexes FollowSymLinks MultiViews AllowOverride all Order Deny,Allow Deny from all Allow from 127.0.0.1 </Directory>
After modifying and saving, restart wamp!
Recommended learning: phpmyadmin tutorial
The above is the detailed content of How to connect to phpmyadmin externally. For more information, please follow other related articles on the PHP Chinese website!