ulimativ: Apache SSI funktionieren in manchen Verzeichnissen nicht

Hallo Forum,
ich habe einen Apache am Laufen und möchte SSI nutzen. So in meinem Webroot /usr/local/httpd/htdocs/ funktuioneirt das auch.
So ich hab mir nun einen Virtual Host angelegt, dessen Root /home/www/local2/httpd ist. In diesem Verzeichnis funktioniert SSI nicht.
Hier die entsprechenden httpd.conf Einträge
Die standard root conf:
<Directory "/usr/local/httpd/htdocs">

Options Indexes -FollowSymLinks MultiViews Includes ExecCGI
    AllowOverride None
    Order allow,deny
    Allow from all

<IfModule mod_dav.c>
        DAV Off
        </IfModule>

<Files /usr/local/httpd/htdocs/index.htm*>
        Options -FollowSymLinks +Includes +MultiViews
</Files>
<Files test.php3>
        Order deny,allow
        deny from all
        allow from localhost
</Files>

</Directory>

Das habe ich hinzugefügt für mein verzeichnis:
<Directory "/home/www/local2/httpd">
   Options All
   AllowOverride All
    Order allow,deny
    Allow from all
</Directory>

Kann mir jemand sagen, was ich falsch gemacht habe?
Danke Uli

  1. Hi,

    Kann mir jemand sagen, was ich falsch gemacht habe?

    Fehlt da nicht noch

    AddType text/html .shtml
    AddOutputFilter INCLUDES .shtml

    ?
    Oder ist das vielleicht nur für das eine Verzeichnis gesetzt?

    cu,
    Andreas

    --
    Der Optimist: Das Glas  ist halbvoll.  - Der Pessimist: Das Glas ist halbleer. - Der Ingenieur: Das Glas ist doppelt so groß wie nötig.
    http://mud-guard.de/? http://www.andreas-waechter.de/ http://www.helpers.de/
    1. AddType text/html .shtml
      AddOutputFilter INCLUDES .shtml

      ?

      Das ist im <ifModule mod_mime.c> gesetzt
      AddType text/html .shtml
      AddHandler server-parsed .shtml

      und dieses Module existiert
      Also woran könnmts noch liegen?
      Uli

    2. hallo,

      Fehlt da nicht noch
      AddType text/html .shtml
      AddOutputFilter INCLUDES .shtml

      Das fehlt in der Tat, zumindest hat er es nicht gepostet. Außerdem kann ein
          Options Indexes FollowSymLinks +Includes
      nicht schaden.

      Christoph S.