how to access phpmyadmin remotely

前端 未结 7 721
没有蜡笔的小新
没有蜡笔的小新 2021-01-11 23:55

Is it possible to access phpmyadmin from outside the network? Where do I set it? I tried editing httpd.conf, and restarted all services from wampserver but it doesn\'t work<

7条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-12 00:23

    # Edit C:\wamp\alias\phpmyadmin.conf  
    # Below is v3.5.1 - the current version is 4.0.4.1
    
    Alias /phpmyadmin "c:/wamp/apps/phpmyadmin3.5.1/" 
    
    # to give access to phpMyAdmin from outside 
    # replace the lines
    #
    # Require local
    #
    # by
    #
    # Require all granted
    #
    
    
       Options Indexes FollowSymLinks MultiViews
       AllowOverride all
       Require all granted
    
    

提交回复
热议问题