On Sun, 23 Jun 2002, Will wrote: > I've downloaded the module off of CPAN to my Win98 > desktop, and now I am trying to install it on the > server my hosting service provides (a Unix system > running Apache).
Ah, now I see. The easiest way to do that is to just put the Template.pm file in the same directory as your CGIs. Then, in the CGI scripts do: require './Template.pm'; Before you use HTML::Template. Alternately, you could create a lib/ directory containing a directory called HTML with Template.pm in it. Then you could do: use lib './lib/'; use HTML::Template; -sam --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
