I'm getting the following message in my error log:
Can't locate object method "_exit_if_too_big" via package
"Apache2::RequestRec" at /var/www/html/bugzilla/lib/Apache2/SizeLimit.pm
line 60
Fedora 12
httpd-2.2.15-1.fc12.2.x86_64
mod_perl-2.0.4-9.x86_64
Apache2::SizeLimit 0.92
My startup.pl code looks like:
use Apache2::SizeLimit;
Apache2::SizeLimit->set_max_unshared_size(70_000);
And my Apache config looks like:
<Directory "/var/www/html/bugzilla">
AddHandler perl-script .cgi
PerlCleanupHandler Apache2::SizeLimit
Bugzilla::ModPerl::CleanupHandler
PerlOptions +ParseHeaders
Options +ExecCGI
AllowOverride Limit FileInfo Indexes
DirectoryIndex index.cgi index.html
</Directory>