Client denied by server configuration

Client denied by server configuration :
Error : tail -f /usr/local/apache/logs/error_log | grep username
[Sun Dec 07 14:04:38 2008] [error] [client 203.193.165.98] client denied by server configuration: /home/username/public_html/catalog/admin/index.php
Solution:
If you get above error then you need to check .htaccess file under respective directory(here catalog/admin) and there you need to comment the rule “Deny from all”
Like this:
<Files *.php>
Order Deny,Allow
#Deny from all
</Files>
done

Leave a Comment