Currently going through the process of trying to get Typo working on my environment, which I can't install gems on etc, so a bit of tweaking is necessary. One thing I have noticed so far is that the .htaccess file clobbers the existing debian setup of FastCGI, as it uses mod_fcgid rather than mod_fastcgi, so the line
AddHandler fastcgi-script .fcgi
actually breaks the existing handler (which is already set-up in apache2's config files). This is the standard way that Debian is set up, so I imagine it would affect quite a lot of users. So, my suggestion is that the .htaccess file be rewritten to look similar to the following:
<IfModule mod_fastcgi.c>
AddHandler fastcgi-script .fcgi
</IfModule>
<IfModule mod_fcgid.c>
AddHandler fcgid-script .fcgi
</IfModule>
<IfModule mod_cgi.c>
AddHandler cgi-script .cgi
</IfModule>
Does this seem to make sense to people?
Cheers,
Tom
--
Tom Robinson
[EMAIL PROTECTED]
_______________________________________________ Typo-list mailing list [email protected] http://rubyforge.org/mailman/listinfo/typo-list
