in reply to
HTML::Template
Get a copy from CPAN, then save it in a directory you do have access to and put
BEGIN {unshift @INC, 'path'}
at the start of your script, where "path" is the filepath from where your script is to the directory where you installed the module.
@INC contains tells perl where to look for modules that you
use, so after you've done that you should be able to call the module the same way you call pre-installed modules.
Hope that works for you the way it works for me!
§
George Sherston