Comment # 4 on bug 909692 from
Hello Eric,

i found a Problem with "/etc/apache2/conf.d/twiki.conf":

In the last Directory Directive a "Options FollowSymLinks" is missing. That is
the reason why the top menu and editor don't work.


My /etc/apache2/conf.d/twiki.conf :

Alias /twiki/pub        "/var/lib/twiki/pub"
Alias /twiki/do         "/srv/twiki/bin"
Alias /twiki/bin        "/srv/twiki/bin"
Alias /twiki            "/srv/twiki"


<Directory "/srv/twiki">
        AllowOverride all
        Options FollowSymLinks
        Allow from all
</Directory>

<Directory "/srv/twiki/bin">
        Options ExecCGI FollowSymLinks
        SetHandler cgi-script
</Directory>

<Directory "/var/lib/twiki/pub">
        AllowOverride all
    --> Options FollowSymLinks <--
        Allow from all
</Directory>


bye.


You are receiving this mail because: