• Frank greetings, thank you for this awesome plugin. With this plug-in page speed 94 – 95 . But I’m getting hundreds of mistakes in recent days.
    Errors related to a large part of GoogleBot .
    [ Sun Jan 10 09 : 20: 27.093795 2016 ] [ authz_cor : error ] [ pid 29918 ] [client 66.249.78.163:56570 ] AH01630 : Client denied by server configuration: /home/mysiteaddress/domains/mysiteaddress.com/private_html/wp-content/cache/autoptimize/autoptimize_14701715a26fc3541f5e0c6dd99cedc7.php

    or

    [Sun Jan 10 09:32:27.567480 2016] [authz_core:error] [pid 30123] [client 66.249.66.96:53084] AH01630: client denied by server configuration: /home/mysiteaddress/domains/mysiteaddress.com/private_html/wp-content/cache/autoptimize/autoptimize_35162fa601e9e3d95191d3ad2d6a7b07.php

    https://www.ads-software.com/plugins/autoptimize/

Viewing 1 replies (of 1 total)
  • Plugin Author Frank Goossens

    (@futtta)

    if you have normal access to these files but googlebot does not, then you probably have some other configuration (possibly by a plugin) in place that denies googlebot (and possibly other bots) from accessing said resources. check your .htaccess in the root folder, in wp-content en in wp-content/cache for rules that do such denials.

    wp-content/cache/autoptimize/.htaccess makes no distinction between useragents/ ip-addresses:

    <IfModule mod_headers.c>
            Header set Vary "Accept-Encoding"
            Header set Cache-Control "max-age=10672000, must-revalidate"
    </IfModule>
    <IfModule mod_expires.c>
            ExpiresActive On
            ExpiresByType text/css A30672000
            ExpiresByType text/javascript A30672000
            ExpiresByType application/javascript A30672000
    </IfModule>
    <IfModule mod_deflate.c>
            <FilesMatch "\.(js|css)$">
            SetOutputFilter DEFLATE
        </FilesMatch>
    </IfModule>
    <IfModule mod_authz_core.c>
        <Files *.php>
            Require all granted
        </Files>
    </IfModule>
    <IfModule !mod_authz_core.c>
        <Files *.php>
            Order allow,deny
            Allow from all
        </Files>
    </IfModule>

    hope this helps,
    frank

Viewing 1 replies (of 1 total)
  • The topic ‘autoptimize errors’ is closed to new replies.