Zen Cart Logo
Forums / General Questions / What does this error mean? client denied by server configuration

What does this error mean? client denied by server configuration

Views: 6,366

Results 1 to 20 of 25
19 Aug 2011, 4:27 PM
#1
nolsowski avatar

nolsowski

Inactive

Join Date:
Aug 2010
Posts:
324
Plugin Contributions:
0

What does this error mean? client denied by server configuration

I have noticed in my error log this error over and over and I can't figure out what it means let alone how to fix it.

[Fri Aug 19 11:05:29 2011] [error] [client 67.4.65.50] client denied by server configuration: /home/xxxxx/public_html/admin/includes/images, referer: https://frompropertorocker.com/admin/includes/stylesheet.css

My admin has been changed to something completely different. I just didn't want it up here.

Any ideas?

Thanks in advance!

Oh I have the latest version of zen cart installed. In case you were wondering. :)

19 Aug 2011, 5:27 PM
#2
nolsowski avatar

nolsowski

Inactive

Join Date:
Aug 2010
Posts:
324
Plugin Contributions:
0

Re: What does this error mean? client denied by server configuration

I have also just noticed this error too and not sure what it means. I never had an errors.php file.

[Fri Aug 19 04:51:29 2011] [error] [client 87.106.85.65] script '/home/xxxx/public_html/errors.php' not found or unable to stat

This one actually has another ip address to it also which is 91.194.234.3

Thanks!

20 Aug 2011, 11:45 PM
#3
nolsowski avatar

nolsowski

Inactive

Join Date:
Aug 2010
Posts:
324
Plugin Contributions:
0

Re: What does this error mean? client denied by server configuration

Anyone have any ideas? I am completely stumped on this one.

22 Sep 2011, 2:40 PM
#4
nolsowski avatar

nolsowski

Inactive

Join Date:
Aug 2010
Posts:
324
Plugin Contributions:
0

Re: What does this error mean? client denied by server configuration

Can anyone tell me what the first error means? I am still getting it and I have no idea how to fix it.

Thanks!

22 Sep 2011, 3:29 PM
#5
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,513
Plugin Contributions:
176

Re: What does this error mean? client denied by server configuration

"client denied by server configuration" is usually a result of an .htaccess rule preventing the person from that IP address from accessing the page/file mentioned.

22 Sep 2011, 3:35 PM
#6
nolsowski avatar

nolsowski

Inactive

Join Date:
Aug 2010
Posts:
324
Plugin Contributions:
0

Re: What does this error mean? client denied by server configuration

DrByte:

"client denied by server configuration" is usually a result of an .htaccess rule preventing the person from that IP address from accessing the page/file mentioned.

That is my ip address. What do I need to change in that file?

Thanks for the help :)

22 Sep 2011, 4:08 PM
#7
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,513
Plugin Contributions:
176

Re: What does this error mean? client denied by server configuration

Looks like you've probably turned on something like "image hotlink prevention" in your hosting control panel which is blocking you from accessing images.
People often turn that on because they think it's a magic switch to prevent people from stealing their product images, but not all servers work with it properly.

22 Sep 2011, 4:16 PM
#8
nolsowski avatar

nolsowski

Inactive

Join Date:
Aug 2010
Posts:
324
Plugin Contributions:
0

Re: What does this error mean? client denied by server configuration

DrByte:

Looks like you've probably turned on something like "image hotlink prevention" in your hosting control panel which is blocking you from accessing images.
People often turn that on because they think it's a magic switch to prevent people from stealing their product images, but not all servers work with it properly.

I did have that on a while back (thought I left it on) but I just went in to disable it and it's already disabled. Anything else causing it?

22 Sep 2011, 4:17 PM
#9
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,513
Plugin Contributions:
176

Re: What does this error mean? client denied by server configuration

You need to ask your host.

22 Sep 2011, 4:17 PM
#10
nolsowski avatar

nolsowski

Inactive

Join Date:
Aug 2010
Posts:
324
Plugin Contributions:
0

Re: What does this error mean? client denied by server configuration

DrByte:

You need to ask your host.

Thanks! Will do!

22 Sep 2011, 4:36 PM
#11
mprough avatar

mprough

Totally Zenned

Join Date:
Nov 2007
Location:
Woodbine, Georgia, United States
Posts:
4,289
Plugin Contributions:
39

Re: What does this error mean? client denied by server configuration

cpanel htaccess editor sucks... you will likely need to remove the rules by hand

~Melanie

22 Sep 2011, 4:38 PM
#12
nolsowski avatar

nolsowski

Inactive

Join Date:
Aug 2010
Posts:
324
Plugin Contributions:
0

Re: What does this error mean? client denied by server configuration

mprough:

cpanel htaccess editor sucks... you will likely need to remove the rules by hand

~Melanie

Thanks! How do I do that?

22 Sep 2011, 4:41 PM
#13
mprough avatar

mprough

Totally Zenned

Join Date:
Nov 2007
Location:
Woodbine, Georgia, United States
Posts:
4,289
Plugin Contributions:
39

Re: What does this error mean? client denied by server configuration

Under public_html look for a file named .htaccess. Download and back this file up as a precaution and you are looking for something like this:

RewriteCond %{HTTP_REFERER} !^http://domain.com/.*$      [NC]
RewriteCond %{HTTP_REFERER} !^http://domain.com$      [NC]
RewriteCond %{HTTP_REFERER} !^http://www.domain.com/.*$      [NC]
RewriteCond %{HTTP_REFERER} !^http://www.domain.com$      [NC]
RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ - [F,NC]
22 Sep 2011, 4:45 PM
#14
nolsowski avatar

nolsowski

Inactive

Join Date:
Aug 2010
Posts:
324
Plugin Contributions:
0

Re: What does this error mean? client denied by server configuration

mprough:

Under public_html look for a file named .htaccess. Download and back this file up as a precaution and you are looking for something like this:

RewriteCond %{HTTP_REFERER} !^http://domain.com/.$ [NC]
RewriteCond %{HTTP_REFERER} !^http://domain.com$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.domain.com/.
$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.domain.com$ [NC]
RewriteRule .*.(jpg|jpeg|gif|png|bmp)$ - [F,NC]



Thank you! Now lets see if the error goes away.
22 Sep 2011, 6:09 PM
#15
nolsowski avatar

nolsowski

Inactive

Join Date:
Aug 2010
Posts:
324
Plugin Contributions:
0

Re: What does this error mean? client denied by server configuration

:( I am still getting that error. Any other ideas?

22 Sep 2011, 6:14 PM
#16
mprough avatar

mprough

Totally Zenned

Join Date:
Nov 2007
Location:
Woodbine, Georgia, United States
Posts:
4,289
Plugin Contributions:
39

Re: What does this error mean? client denied by server configuration

Reboot clear your cookies and try

~Melanie

22 Sep 2011, 6:16 PM
#17
mprough avatar

mprough

Totally Zenned

Join Date:
Nov 2007
Location:
Woodbine, Georgia, United States
Posts:
4,289
Plugin Contributions:
39

Re: What does this error mean? client denied by server configuration

HTTP/1.1 404 Not Found
Date: Thu, 22 Sep 2011 18:15:43 GMT
Server: Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.2.11
X-Powered-By: PHP/5.2.11
Set-Cookie: zenid=594c2fa4caaf3c840230be9c5d0b74d7; path=/; domain=.frompropertorocker.com; HttpOnly
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Content-Type: text/html; charset=iso-8859-1

22 Sep 2011, 6:34 PM
#18
nolsowski avatar

nolsowski

Inactive

Join Date:
Aug 2010
Posts:
324
Plugin Contributions:
0

Re: What does this error mean? client denied by server configuration

mprough:

HTTP/1.1 404 Not Found
Date: Thu, 22 Sep 2011 18:15:43 GMT
Server: Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.2.11
X-Powered-By: PHP/5.2.11
Set-Cookie: zenid=594c2fa4caaf3c840230be9c5d0b74d7; path=/; domain=.frompropertorocker.com; HttpOnly
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Content-Type: text/html; charset=iso-8859-1

What does all this mean? lol

22 Sep 2011, 6:43 PM
#19
nolsowski avatar

nolsowski

Inactive

Join Date:
Aug 2010
Posts:
324
Plugin Contributions:
0

Re: What does this error mean? client denied by server configuration

I also tried clearing out my cookies and rebooting and still having the issue.

22 Sep 2011, 6:55 PM
#20
mprough avatar

mprough

Totally Zenned

Join Date:
Nov 2007
Location:
Woodbine, Georgia, United States
Posts:
4,289
Plugin Contributions:
39

Re: What does this error mean? client denied by server configuration

The url you provided is correctly delivery a 404 error. Page not found. all good