WAMP Server ERROR “Forbidden You don't have permission to access /phpmyadmin/ on this server.”

后端 未结 15 1965
既然无缘
既然无缘 2020-12-13 00:42

Hi Friends previously I am using XAMP Server but when I install joomla Templates it creates alots of error. Now I installed the WAMP, but the issues are: 1. I can access wit

15条回答
  •  [愿得一人]
    2020-12-13 01:12

    Change in following file \bin\apache\apache2.2.22\conf\httpd.conf

    Replace Listen 80 with Listen 0.0.0.0:80
    

    Replace

    
        Options FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
    
    

    with

    
        Options FollowSymLinks
        AllowOverride None
        Order deny,allow
        Allow from all
    
    

    Replace

    onlineoffline tag - don't remove

    Order Deny,Allow
    Deny from all
    Allow from 127.0.0.1
    

    with

    onlineoffline tag - don't remove

    Order Deny,Allow
    Allow from all
    Allow from 127.0.0.1
    

    in \wamp\alias\phpmyadmin.conf replace

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

    with

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

    Tested on windows localhost. Note : Please consider RigsFolly's comment also.

提交回复
热议问题