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

How to connect to phpmyadmin externally

尚
Original
2019-12-14 13:53:002648browse

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:


    Options Indexes FollowSymLinks MultiViews
    AllowOverride all
    Order Deny,Allow
    Allow from all

Your original configuration should be like this:


    Options Indexes FollowSymLinks MultiViews
    AllowOverride all
    Order Deny,Allow
    Deny from all
    Allow from 127.0.0.1

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!

Statement:
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