On Wed, 3 Dec 2003 17:56:54 +0300
Igor Vylusko <[EMAIL PROTECTED]> wrote:

> 
> Thanks for your answer Enrico.

:-)

> What about TT2* configuration parameters in .htaccess?

There isn't here the problem.
All TT2* directives can be used in .htaccess file.

Depending on wich Apache directives you would override, first you must check the
status of AllowOverride directive for your directories.

If none of AllowOverride directive appears in main httpd.conf then you can use
all allowed directives in .htaccess file (by default AllowOverride is set to
All, that means that any directive which has the .htaccess Context is allowed in
.htaccess files).

Otherwise, be sure that at least the directive like:

   AllowOverride FileInfo

is present in order to use:

   SetHandler perl-script

in your .htaccess file.

You can found more info about allowed directives at
http://httpd.apache.org/docs/mod/core.html#allowoverride

For example, if you want to run CGI scripts also outside cgi-bin script
directory, then a directive like:

   AllowOverride FileInfo Options

should be appear in order to override directory behaviour by adding a:

   Options +ExecCGI

in your .htaccess file.

Regards

by

        - Enrico


_______________________________________________
templates mailing list
[EMAIL PROTECTED]
http://lists.template-toolkit.org/mailman/listinfo/templates

Reply via email to