PAB3::ModPerl::Registry contains Perl scripts persistently under Apache and mod_perl inside the PAB3 CGI environment.
SYNOPSIS
------------
mod_perl 1.x
------------
# httpd.conf
PerlModule PAB3::ModPerl::Registry
Alias /cgi-pab/ /home/httpd/cgi-bin/
< Location /cgi-pab >
SetHandler perl-script
PerlHandler PAB3::ModPerl::Registry
PerlSendHeader off
Options +ExecCGI
# [optional] set a package to run the scripts inside it.
# If you are using different packages inside the scripts
# all "global" functions and variables will not be available anymore.
# Thats because Perl allows only package wide globals.
# The option below enables choosing a self defined package without
# loosing "global" access to the functions and variables announced here.
PerlSetVar Package MyPackageName
< /Location >
------------
mod_perl 2.x
------------
# httpd.conf
PerlModule PAB3::ModPerl::Registry
Alias /cgi-pab/ /home/httpd/cgi-bin/
< Location /cgi-pab >
SetHandler perl-script
PerlResponseHandler PAB3::ModPerl::Registry
PerlOptions -ParseHeaders +GlobalRequest +SetupEnv
Options +ExecCGI
# [optional] set a package to run the scripts inside it.
# If you are using different packages inside the scripts
# all "global" functions and variables will not be available anymore.
# Thats because Perl allows only package wide globals.
# The option below enables choosing a self defined package without
# loosing "global" access to the functions and variables announced here.
PerlSetVar Package MyPackageName
< /Location >
Requirements:
· Perl
Product's homepage
Requirements:
· Perl