• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

Issue AH01630: client denied by server configuration

Martin73

Basic Pleskian
I have installed the music server Ampache and noticed that no covers are displayed during playback. After a look in the error log I saw following message:
Code:
[Tue Apr 28 20:51:15.609666 2020] [authz_core:error] [pid 3737:tid 139783904933632] [client XXX.XXX.XXX.XX:41474] AH01630: client denied by server configuration: /var/www/vhosts/mydomain.com/ampache.mydomain.com/lib/components/prettyphoto/images/prettyPhoto, referer: https://ampache.mydomain.com/

After searching the web i realized that this is a known "Apache issue". I tried some variations in httpd.conf and .htaccess file. But without success. Has someone an idea what to do?

My system:
‪Ubuntu 18.04.3 LTS‬
Plesk Obsidian 18.0.26
Ampache 4.1.1
 
Sorry, Ampache and Apache is very close. ;)
Code:
[Wed Apr 29 16:13:05.626238 2020] [access_compat:error] [pid 17920:tid 139784559236864] [client 127.0.0.1:38142] AH01797: client denied by server configuration: /usr/share/plesk-service.localdomain/
[Wed Apr 29 16:18:07.768656 2020] [access_compat:error] [pid 8615:tid 139784718632704] [client 127.0.0.1:38820] AH01797: client denied by server configuration: /usr/share/plesk-service.localdomain/
[Wed Apr 29 16:23:09.885749 2020] [access_compat:error] [pid 17920:tid 139784290801408] [client 127.0.0.1:39048] AH01797: client denied by server configuration: /usr/share/plesk-service.localdomain/
 
Last edited:
Thanks a lot, but it's already in the file:
Code:
<Directory "/usr/share/plesk-service.localdomain">
    AllowOverride None
    Options None
    Require host localhost
    Order deny,allow
    Deny from all
    Allow from localhost
</Directory>
 
Here are some new findings: Try the solution from
It's on Prestashop, but I'm pretty sure, it applies to this case here, too. Also filed a report here
 
Back
Top