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

后端 未结 15 1964
既然无缘
既然无缘 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:17

    In your apache config file (../bin/apachex.y.z/cong/httpd.conf)

    Just change

    < Directory "c:/wamp/www/" > ...
    ...

    "Require local" ===> "Require all granted"
    < /Directory >

    This allows other pc's to access (to read) your web folder.

    0 讨论(0)
  • 2020-12-13 01:17

    I had done below changes for new phpmyadmin4.0.4 in httpd.conf file

    <Directory />
        AllowOverride none
        Require all granted
    </Directory>
    

    and phpmyadmin.conf

    <Directory "c:/wamp/apps/phpmyadmin4.0.4/">
        Options Indexes FollowSymLinks MultiViews
        AllowOverride all
            Order Allow,Deny
        Allow from all
    </Directory>
    

    and restart my server.

    0 讨论(0)
  • 2020-12-13 01:22

    Change httpd.conf file as follows:

    from

    <Directory />
        AllowOverride none
        Require all denied
    </Directory>
    

    to

    <Directory />
        AllowOverride none
        Require all granted
    </Directory>
    
    0 讨论(0)
  • 2020-12-13 01:23

    Go to C:\wamp\alias. Open the file phpmyadmin.conf and add

    Options Indexes FollowSymLinks MultiViews
    AllowOverride all
    Order Deny,Allow
    Deny from all
    Allow from 127.0.0.1
    Allow from MACHINE_IP
    
    0 讨论(0)
  • 2020-12-13 01:24

    Go to C:\wamp\alias. Open the file phpmyadmin.conf and change

    <Directory "c:/wamp/apps/phpmyadmin3.5.1/">
        Options Indexes FollowSymLinks MultiViews
        AllowOverride all
            Order Deny,Allow
        Deny from all
        Allow from 127.0.0.1
    </Directory>
    

    to

    <Directory "c:/wamp/apps/phpmyadmin3.5.1/">
        Options Indexes FollowSymLinks MultiViews
        AllowOverride all
            Order Allow,Deny
        Allow from all
    </Directory>
    

    problem solved

    0 讨论(0)
  • 2020-12-13 01:24

    comment Require local from httpd.conf

    "#Require local"

    0 讨论(0)
提交回复
热议问题