Sometime on Sep 26, Johannes Gamperl assembled some asciibets to say:
> i've a problem with the usage of this modul on the server from a
> provider. the provider doesn't had installed the modul. what can i
> do to get the power of HTML::Template on this server ...
In your own directory, create a directory called HTML, copy Template.pm
into it. If you have quota problems, you may want to strip all the
perldoc docs from the file.
Then, in your perl programs, before you use HTML::Template, add this
line:
use lib "/path/to/HTML";
use HTML::Template;
Note, this is the directory in which the HTML directory is, so, if you
have a set up like this:
/home/philip/public_html
and you put HTML in public_html:
/home/philip/public_html/HTML/Template.pm,
then you'd say
use lib "/home/philip/public_html";
use HTML::Template;
Hope this helps. This is what I do. I've also got to contend with the
fact that my server admin has four versions of perl (4.034, 5.1, 5.4,
5.5), and doesn't know which is which.
Philip
--
"But this one goes to eleven."
-- Nigel Tufnel
Visit my webpage at http://www.ncst.ernet.in/~philip/
Read my writings at http://www.ncst.ernet.in/~philip/writings/
MSN philiptellis Yahoo! philiptellis
AIM philiptellis ICQ 129711328
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]