0

I using Wamp sesrver, i got the following error, how do I fix this problem?

[client 127.0.0.1] client denied by server configuration: D:/httpd-2.2-x64, referer: http://localhost/sabredav/

my D:/ doesn't have a folder name "httpd-2.2-x64"

Yoyo
  • 1
  • 1

1 Answers1

1

Have a look in your wamp's httpd.conf file you will probably find a <Directory D:/httpd-2.2-x64> (or similar) configuration block. This block will probably have something like

order deny, allow
deny from all

within it. You can change the deny from all to allow from all to get rid of that error message. You should probably spend some time looking at the Apache core configuration documentation too.

user9517
  • 114,104
  • 20
  • 206
  • 289
  • there is no (or similar) in my wamp's httpd.conf file so I did add it by myself Order allow,deny Allow from all and I still got that error – Yoyo Apr 04 '11 at 11:51