• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Question AH01630: client denied by server configuration: uri

LorisMod

New Pleskian
In the logo files I find these errors:

AH01630: client denied by server configuration: uri /img/xbarbecue-king-shop-logo-1552038341.jpg.pagespeed.ic.Yf_KooWimj.webp, referer: Barbecue a Gas
AH01630: client denied by server configuration: uri /img/cms/xpaypal.png.pagespeed.ic.r89dh131kc.webp, referer: Barbecue a Gas
AH01630: client denied by server configuration: uri /img/xbarbecue-king-shop-logo-1552038341.jpg.pagespeed.ic.4CMvBmlYtZ.png, referer: Barbecue a Gas

With Page Speed module and Google PageSpeed Insights Pro
How to solve?
 
Apache problem i think.

Since 2.4 version, acess are granted by mod-authz_host who also handle all other access. You have to use "Require any", "Require all" and "Require none"

To grant access to everyone to a specific directory just add "Require all granted"

Hope il helped
 
Apache problem i think.

Since 2.4 version, acess are granted by mod-authz_host who also handle all other access. You have to use "Require any", "Require all" and "Require none"

To grant access to everyone to a specific directory just add "Require all granted"

Hope il helped

Thank you!
PrestaShop 1.7 adds a directive to the .htaccess file:

<IfModule mod_php5.c>
php_flag engine off
</IfModule>

# Apache 2.2
<IfModule !mod_authz_core.c>
Order deny,allow
Deny from all
<Files ~ "(?i)^.*\.(jpg|jpeg|gif|png|bmp|tiff|svg|pdf|mov|mpeg|mp4|avi|mpg|wma|flv|webm|ico)$">
Allow from all
</Files>
</IfModule>

# Apache 2.4
<IfModule mod_authz_core.c>
Require all denied
<Files ~ "(?i)^.*\.(jpg|jpeg|gif|png|bmp|tiff|svg|pdf|mov|mpeg|mp4|avi|mpg|wma|flv|webm|ico)$">
Require all granted
</Files>
</IfModule>

I also added wepb, and the probelama was solved
 
Thank you!
PrestaShop 1.7 adds a directive to the .htaccess file:

<IfModule mod_php5.c>
php_flag engine off
</IfModule>

# Apache 2.2
<IfModule !mod_authz_core.c>
Order deny,allow
Deny from all
<Files ~ "(?i)^.*\.(jpg|jpeg|gif|png|bmp|tiff|svg|pdf|mov|mpeg|mp4|avi|mpg|wma|flv|webm|ico)$">
Allow from all
</Files>
</IfModule>

# Apache 2.4
<IfModule mod_authz_core.c>
Require all denied
<Files ~ "(?i)^.*\.(jpg|jpeg|gif|png|bmp|tiff|svg|pdf|mov|mpeg|mp4|avi|mpg|wma|flv|webm|ico)$">
Require all granted
</Files>
</IfModule>

I also added wepb, and the probelama was solved

Hello,
I have the same problem.
Prestashop 1.7 and plesk with pagespeed mod (apache 2.4).
I try to put this in htaccess but the problem still exists.

<IfModule mod_authz_core.c>
<Files ~ "(?i)^.*\.(jpg|jpeg|gif|png|bmp|tiff|svg|pdf|mov|mpeg|mp4|avi|mpg|wma|flv|webm|ico)$">
Require all granted
</Files>
</IfModule>

Did you solve this problem?
 
I changed it like this in / img / .htaccess:

<IfModule mod_php5.c>
php_flag engine off
</IfModule>

# Apache 2.2
<IfModule !mod_authz_core.c>
Order deny,allow
Deny from all
<Files ~ "(?i)^.*\.(jpg|jpeg|gif|png|bmp|tiff|svg|pdf|mov|mpeg|mp4|avi|mpg|wma|flv|webm|webp|ico)$">
Allow from all
</Files>
</IfModule>

# Apache 2.4
<IfModule mod_authz_core.c>
Require all denied
<Files ~ "(?i)^.*\.(jpg|jpeg|gif|png|bmp|tiff|svg|pdf|mov|mpeg|mp4|avi|mpg|wma|flv|webm|webp|ico)$">
Require all granted
</Files>
</IfModule>
 
Back
Top