Tagged Questions
The mod-perl-registry tag has no wiki summary.
2
votes
1answer
152 views
No coverage for runtime with Devel::Cover and ModPerl::Registry
When I'm running Devel::Cover with ModPerl::Registry, I get no coverage info except for BEGIN blocks. When I'm running the same script with Devel::Cover from command line or as a CGI, everything works ...
2
votes
4answers
485 views
How do I add a script specific lib path in mod_perl?
I'm trying to migrate CGI scripts to mod_perl using ModPerl::Registry.
The scripts use modules that are in the same directory as the script, but since mod_perl current directory is elsewhere, that ...
1
vote
1answer
66 views
How to suppress the default mod_perl error page in legacy CGI script using ModPerl::Registry
I have a CGI script in Perl that generates HTTP error pages by itself. I am running it under mod_perl via ModPerl::Registry, using the following Apache2 configuration:
Alias /perl "/var/www/perl"
...
0
votes
1answer
21 views
Dumping mod_perlified variables--what's the local namespace?
I have a mod_perl script:
use strict;
use warnings FATAL => 'all';
use 5.010001;
my $face = 'ugly';
use Data::Dump qq(pp);
die pp($ModPerl::ROOT::ModPerl::Registry::C_3a_www_test_2epl::face);
...