2013-07-31 64 views

回答

2

這只是一個例子。你需要自己創建文件。 (你會看到你的例子引用「file:MyApache2/CurrentTime.pm」)。

mkdir -p example-lib/MyApache2 
touch example-lib/MyApache2/CurrentTime.pm 

然後將示例中的內容粘貼到剛剛創建的文件中。

爲了使它在mod_perl下運行,您還必須讓服務器知道MyApache2的位置。您應該可以在Apache配置中添加如下內容:

PerlSwitches -I/path/to/example-lib 

不要忘記在測試之前重新啓動Apache。

+0

感謝您的回答。它對我來說非常合適。 – atticus3000