如何使用mod_perl使CGI :: Application :: Dispatch工作?

时间:2009-01-13 15:25:07

标签: mod-perl

好的,所以我试图用mod_perl设置一个Dispatcher,我真的不知道我做错了什么。我相当肯定,问题在于我的mod_perl配置。以下是我认为相关的内容:

Apache Directory Config

<Directory  "C:/Documents and Settings/frew/My Documents/acd">
   SetHandler perl-script
   PerlHandler ACD::Dispatch
    Options Indexes FollowSymLinks ExecCGI
    AllowOverride None
    Order allow,deny
    Allow from all
    DirectoryIndex Default.html
</Directory>

注意:ACD :: Dispatch位于acd / ACD。

ACD ::调度

package ACD::Dispatch;
use base 'CGI::Application::Dispatch';
sub dispatch_args {
    return {
        prefix  => 'ACD',
        table   => [
        ''                => { app => 'Controller', rm => 'awesome' },
        ':app/:rm'        => { },
        ],
    };
}

可能最重要的是, Apache错误:

[Mon Jan 12 17:42:08 2009] [error] [client 10.6.1.73] failed to resolve handler `ACD::Dispatch': Can't locate ACD/Dispatch.pm in @INC (@INC contains: C:/usr/site/lib C:/usr/lib . C:/Program Files/Apache Software Foundation/Apache2.2) at (eval 3) line 3.\n

感谢您的帮助!

更新:我需要将其添加到我的Apache配置中:

<Perl>
   use lib '/path/to/acd';
</Perl>

1 个答案:

答案 0 :(得分:4)

好的,基于错误消息:

  

ACD :: Dispatch:找不到   @INC中的ACD / Dispatch.pm(@INC   contains:C:/ usr / site / lib C:/ usr / lib。   C:/ Program Files / Apache Software   基金会/ APACHE2.2

以及你说的事实:

  

ACD :: Dispatch是acd / ACD。

看起来您需要使用其绝对路径名将“acd”目录放在@INC路径中。

虽然你可能会想'。'在@INC上,它应该是你的acd目录,我不是这样,在mod_perl下。例如,请参阅this discussion