On 03-10-19 19:32 -0500, Ian Melnick wrote: > Anyone have an idea on why this isn't working? I copied the icon > example, and the permissions are 755 throughout (and icons work), so why > won't this? > > Alias /doc/ /usr/share/doc/ > <Directory /usr/share/doc> > Options Indexes MultiViews > AllowOverride None > Order allow,deny > Allow from all > </Directory>
Maybe try lowercasing the 'A' in the 'Allow from all' line & The 'O' in 'Order'? my /doc/ Alias uses a <Location> block rather than <Directory>: <Location /doc> order deny,allow deny from all allow from 127.0.0.0/255.0.0.0 allow from 192.168.0.0/255.255.255.0 IndexIgnore .??* *~ *# HEADER* RCS CVS *,v *,t Options Indexes FollowSymLinks MultiViews </Location> Kenneth -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

