Why plain listing in apache22 - want icons!

In my httpd.conf I have this section in <Directory>

Code:
Options Indexes FollowSymLinks

In my /usr/local/etc/apache/extra/httpd-autoindex.conf I have ;

Code:
Alias /icons/ "/usr/local/www/apache22/icons"

In /usr/local/www/apache22/icons there are loads of icons !!!

Driving me nuts!
 
Have you restarted the apache server after the change? Have you enabled the autoindex module? What are your indexing options? (ie IndexOptions FancyIndexing)
 
Is httpd-autoindex.conf actually Included from httpd.conf? It isn't by default (because it's an 'extra').

Code:
# Fancy directory listings
[color="Red"][B]#[/B][/color] Include etc/apache22/extra/httpd-autoindex.conf
 
Added
Code:
IndexOptions FancyIndexing Iconheight=22 IconWidth=20
to <directory> section and added ;

Code:
Include etc/apache22/extra/httpd-autoindex.conf
to end of conf!

All good - thanks alot guys !!!
 
Just one last [lol!] quick one - notice that alot of servers have the hostname / server name /apache version etc at the end bottom of directory listings - I'm sure I had this once - can't seem to find whatever knob to turn now though ...
 
Back
Top