How do I enable directory indexing for an entire server? It has somehow gotten disabled, and so many customers are requesting that it be re-enabled that I hate to tell them all to use .htaccess files. Is there any easy way to do this?
You should be able to place a .htaccess file in the /home directory of your server with the following line in it and that should do it.
Options +Indexes
I use the minus option to disable it on my servers and it works fine. You can also looks in the httpd.conf file for the Options Indexes words and make a change there.