I did install s9y in a LAMP-hosting env, but I have some trouble with css negotiation, that are related to s9y code, imho.
here is what happens.
in s9y templates/default/index.tpl this row aims to load css:
Code: Select all
<link rel="stylesheet" type="text/css" href="{$head_link_stylesheet}" />
It seems that either apache2 need further directives in .htaccess or apache is not compiled/configured to work this way.[Wed Mar 30 15:39:45 2005] [error] [client xxx.xxx.xxx.xxx] Negotiation: discovered file(s) matching request: /web/htdocs/www.example.com/home/blog/serendipity.css (None could be negotiated)., referer: http://www.example.com/blog/
I found a workaround that works well, but I hope this will be fixed anyhow. Changing the html as follow, all goes ok:
Code: Select all
<link rel="stylesheet" type="text/css" href="http://www.example.com/blog/index.php?url=/serendipity.css" />
thank you