in reply to Using Template toolkit

Well, did you try setting the ABSOLUTE and/or RELATIVE options, as suggested in the error messages that you quoted?
my $template = Template->new({ INCLUDE_PATH => '/templates/includes', PRE_PROCESS => 'config', ABSOLUTE => 1, # (may want to pick one or the other RELATIVE => 1, # instead of using both) });

Replies are listed 'Best First'.
Re: Re: Using Template toolkit
by Anonymous Monk on May 11, 2001 at 20:18 UTC
    I did after I saw what you wrote. Now it just gives me file not found messages, even though I know they are there. Is there any way I can get it to print the full path with drive letter that its searching?