我可以在perl脚本中使用HTML :: Template吗?

时间:2012-06-02 12:28:12

标签: html perl templates

我使用godaddy.com进行网站托管

我可以在perl脚本中使用HTML :: Template吗?我想将perl脚本输出发送到模板文件,模板文件在内部生成网页并在浏览器上显示。但是当我在我的perl脚本中使用HTML :: Template时,我收到了错误。

谢谢, Devesh

1 个答案:

答案 0 :(得分:1)

首先,您需要通过运行此支持文章中的命令来检查godaddy服务器上是否安装了HTML::Template

http://support.godaddy.com/help/article/1488/can-i-add-perl-modules-to-my-hosting-account

如果perl -MFile::Find=find ...调用在列表中返回HTML :: Template,则可能会错误地使用它。

如果命令未返回列表中的模块,您可以尝试创建模块的本地安装(例如,在Web根目录中的lib目录中)并包含HTML :: Template从本地目录。类似的东西:

BEGIN { push(@INC, '/path/to/the/lib/directory/') };
use strict;
use warnings;
use HTML::Template;