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

You can install modules without having root. You can install pure perl modules, of which HTML::Template is, without even needing a shell. Simply ftp the .pm file to a folder named HTTP, and include it.
  • Comment on Re: Options for SS Includes when HTML::Template is unavailable

Replies are listed 'Best First'.
Re^2: Options for SS Includes when HTML::Template is unavailable
by GaijinPunch (Pilgrim) on Aug 13, 2004 at 05:54 UTC
    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.
      Add
      use lib '/path/to/where/your/modules/live';
      before your use HTML::Template;