mod-perl2
Is there a way that I can force mod_perl to re-use buffer memory?
I have a Perl script running in mod_perl that needs to write a large amount of data to the client, possibly over a long period. The behavior that I observe is that once I print and flush something, th[详细]
2022-12-22 20:53 分类:问答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\';[详细]
2022-12-22 19:33 分类:问答How can I run Devel::Cover under mod_perl2?
Unfortunately, Devel::Cover does not yet work with threads. It doesn\'t work with prefork either. Being use\'d in startup.pl, Devel::Cover issues[详细]
2022-12-20 04:10 分类:问答How can I learn DOCUMENT_ROOT in startup.pl under mod_perl2?
I want to learn DOCUMENT_ROOT in startup.pl, but the best I can do is to learn server_root: use Apach开发者_StackOverflowe2::ServerUtil ();[详细]
2022-12-20 03:37 分类:问答How can I determine PerlLogHandler performance impact?
I want to create a custom Apache2 log handler, and the template that is found on the apache site is: #file:MyApache2/LogPerUser.pm[详细]
2022-12-18 09:17 分类:问答Help troubleshoot a consistently repeatable mod_perl2 / $SIG{__DIE__} bug
This is mod_perl2 on Apache 2.2, ActiveState Perl 5.10 for win32. I override $SIG{__DIE__} and turn on DBI\'s RaiseError flag, which AFAICT from the docs, should call my override when a database call[详细]
2022-12-18 00:25 分类:问答IPC::Open3 Fails Running Under Apache
I have a module that uses IPC::Open3 (or IPC::Open2, both exhibit this problem) to call an external binary (bogofilter in this case) and feed it some input via the child-input filehandle, then reads t[详细]
2022-12-17 23:52 分类:问答Authentication Module Issues with Apache 2 and Perl
I am SharePoint Developer trying to get a Perl module to work with Subversion, but I think something is wrong with my syntax.I just need to get the username and password, pass it into the webservic开发[详细]
2022-12-16 14:24 分类:问答How do I suppress the default apache error document in mod_perl?
I\'m developing a RESTful API and I wrote a mod_perl2 handler that takes care of the request. My handler deals with error codes by setting $r->status($http_code) and return $http_code;[详细]
2022-12-10 03:39 分类:问答mod_perl application having weird intermittent mysql driver issues
At completely random times my mod_perl scripts crash for no discernible reason, here\'s the error I get:[详细]
2022-12-09 20:15 分类:问答