INFORMATICS

The Best

AH01630: client denied by server configuration

Star InactiveStar InactiveStar InactiveStar InactiveStar Inactive
 

AH01630: client denied by server configuration - /usr/share/phpMyAdmin

AH01630: client denied by server configuration - /usr/share/roundcubemail

 

for Apache 2.4 add in /etc/httpd/conf.d/phpMyAdmin.conf

change

Require local to Require all granted

example

<IfModule mod_authz_core.c>

Require all granted

</IfModule>

for Apache 2.4 add in /etc/httpd/conf.d/roundcubeMail

add Require all granted

example

<Directory /usr/share/roundcubemail/

Options none

AllowOverride Limit

Require all granted

</Directory>

 

------

Change your authorization configuration:

<Directory /usr/share/roundcube>
    #...
    Order allow,deny
    Allow from all
</Directory>

...to the Apache 2.4 version of the same.

<Directory /usr/share/roundcube>
>
    #...
    Require all granted
</Directory>

 

Search