http://www.perlmonks.org?node_id=382549


in reply to Re: Options for SS Includes when HTML::Template is unavailable
in thread Options for SS Includes when HTML::Template is unavailable

I didn't know that. THanks for the tip. EDIT: No love. I've put Template.pm in HTTP/Template.pm (relatively to where the script is run) and it still whines that it can't find HTML/Template within @INC (which is an array of all types of directories I don't have access to.) I even put it in HTML/Template just for good measure.
  • Comment on Re^2: Options for SS Includes when HTML::Template is unavailable

Replies are listed 'Best First'.
Re^3: Options for SS Includes when HTML::Template is unavailable
by Gilimanjaro (Hermit) on Aug 13, 2004 at 08:42 UTC
    Add
    use lib '/path/to/where/your/modules/live';
    before your use HTML::Template;