I've done the googling and turned up empty :( I'm trying to get the included icons to show when someone does a directory view, but everything I try comes back with:

[Wed Jul 27 01:35:57 2005] [error] [client 192.168.0.3] (13)Permission denied: access to /icons/movie.gif failed because
search permissions are missing on a component of the path
192.168.0.3 - - [27/Jul/2005:01:35:57 +0000] "GET /icons/movie.gif HTTP/1.1" 403 225

in the error and access logs, respectively. I'm almost certain it's because I'm not accounting for the chroot properly (the icons live in /var/www/icons by default). The section of httpd.conf that addresses it reads thus:

---
Alias /icons/ "/var/www/icons/"
<Directory "/var/www/icons">
   Options Indexes MultiViews
   AllowOverride None
   Order allow,deny
   Allow from all
</Directory>

---

I've also tried using "/icons/", "/icons", and "../icons", all with negative results. The files inside /var/www/icons are all mode 444, and the directory itself is mode 644, so I'm not sure what permission it needs that it doesn't already have. Where should I look next?

Reply via email to