Help for this page

Select Code to Download


  1. or download this
    sub handler : method    {
        my ($self, $r) = @_;
    ...
    }
    ...
    1;
    
  2. or download this
    sub handler    {
        my $r = shift;
    ...
        return Apache2::Const::OK;
    }
    1;
    
  3. or download this
    ...
    ErrorDocument 500 /error
    ...
      SetHandler perl-script
      PerlResponseHandler dir_browse::error
    </Location>