Home > Database > phpMyAdmin > How to connect to phpmyadmin externally

How to connect to phpmyadmin externally

Release: 2019-12-14 13:53:00
Original
2871 people have browsed it

How to connect to phpmyadmin externally

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>
Copy after login

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>
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template