David Arnold wrote:
I am wondering why it's trying to run the file Rules2.pm. Why doesn't it
just restart then wait to report the error when I attempt to access
scinux.redwoods/mod_perl_rules2?

It's not trying to run it - it's trying to compile it.

sub handler {
    my $=shift;

That's the error. You can't have a scalar called just '$'.

    $f->send_http_header('text/plain');
    $r->print("Mod_Perl Rules Bigtime!\n");
    return OK;
}
1;

--
Andy Armstrong


-- Report problems: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html List etiquette: http://perl.apache.org/maillist/email-etiquette.html



Reply via email to