-->

DEVOPSZONES

  • Recent blogs

    Apache Error: client denied by server configuration: /usr/share/phpMyAdmin


    Apache Error: client denied by server configuration: /usr/share/phpMyAdmin




    Solution:



    In Config file  do following changes and restart Httpd service.

       <IfModule mod_authz_core.c>
         # Apache 2.4
         <RequireAny>
    #       Require ip 127.0.0.1
    #       Require ip ::1
            Require all granted               ---> add this if Apache 2.4
         </RequireAny>
       </IfModule>
       <IfModule !mod_authz_core.c>
         # Apache 2.2
    #     Order Deny,Allow
    #     Deny from All
      Order allow,deny                 --->
      Allow from all                   ----> add this if Apache 2.2
         Allow from 127.0.0.1
         Allow from ::1
       </IfModule>
    </Directory>

    No comments