Hi,
The manual should work directly after install with default httpd.conf, but this is
only true for english language. If you have configured your browser to accept only one
language and there is no document in this language you will receive an empty page.
What happens?
- browser accepts only 'de'
- ./manual contains no index.html.de, so index.html.html is taken
- index.html.html contains only a SSI include but the page is not parsed and SSI is
not allowed for ./manual
- empty page received.
so I want suggest to add the following to all httpd.conf files:
<FilesMatch "\.html\.html(\..+)?$">
SetOutputFilter INCLUDES
</FilesMatch>
<Directory "/apache2/htdocs/manual">
Options +Includes
</Directory>
Guenter.