-
as seen on Server Fault
- Search for 'Server Fault'
Hi,
I've set up a fresh Apache 2.2.15 server on windows server 2008 R2 with mod_perl (mod perl v2.0.4 / perl v5.10.1). Mod_perl and Perl 5.10 has been installed and loaded without problems. However, despite my configuration, the mod_perl module is failing to recognize and execute my .pl file, instead…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
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 alright (obviously).
How can I make Devel::Cover "see" my code being executed in the runtime?
Here's…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
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);
It dies undef at C:/www/test.pl line 8.
I was expecting "ugly" at C:/www/test.pl line 8.
If instead…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
Hi,
I have been having this weird issue where mod_perl seems to lose STDOUT in the middle of the request. So far I have eliminated everything I could think of.
You might have seen this bug related to the following errors in error_log :
Apache2 IO flush: (103)
Apache2::RequestIO::read: (104)
Software…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
From Ubuntu's package libary, I find the two modules I need. However:
mod-perl2 requires apache2-mpm-worker
mod-php5 requires apache2-mpm-prefork
The two apache modules are mutually exclusive and ask me to un-install the other in order to install each. Which means I can't get a server running…
>>> More