Tagged Questions
mod-perl2 is an Apache2 web server module. The module improves the performance of Perl CGI scripts. Scripts are loaded into memory on the first invocation and added to the Apache process. On each subsequent invocation the script is run directly with no need for loading and parsing.
14
votes
8answers
3k views
What Perl RESTful framework do you recommend?
Hi I'm looking for a Perl RESTful framework that have to :
work under apache2/mod_perl2
be simple
be elegant
be light
be flexible
Am I just dreaming or can I avoid the 'Roll our own' approach?
...
13
votes
1answer
688 views
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
Not a CODE reference.
END failed--call queue aborted.
...
9
votes
3answers
441 views
PSGI, What is it, whats the fuxx about?
I have been trying to decide if my web project is a candidate for implementing usage of PSGI, but i dont really see what good it would do for my application at this stage.
I dont really understand ...
6
votes
3answers
864 views
How do I fork properly with mod_perl2?
I'm having trouble forking a long-running process from some code running under mod_perl2.
Everything works for the most part, but it seems that the forked process is holding open handles to Apache's ...
4
votes
2answers
351 views
Modify POST request in mod_perl2
Does anyone know how to access/modify the POST request data using mod_perl2.
IN GET method one can get/set the request QUERY string:
$args = $r->args();
$prev_args = ...
4
votes
1answer
283 views
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 Apache2::ServerUtil ();
$server_root = Apache2::ServerUtil::server_root();
which is quite useless. I ...
4
votes
3answers
127 views
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 ...
3
votes
1answer
43 views
What is the guaranteed uniqueness in the identifiers generated by the APR::UUID module
The documentation of Data::UUID states that
A UUID is 128 bits long, and is guaranteed to be different from all
other UUIDs/GUIDs generated until 3400 CE.
The documentation for APR::UUID ...
3
votes
2answers
96 views
Why are my shared variables getting cleared out between PerlChildInitHandler and PerlResponseHandler in mod_perl?
I am trying to load a configuration file into a hash during my PerlChildInitHandler and then access the values from PerlResponseHandler. However, even though the process number is the same, it seems ...
3
votes
1answer
111 views
mod_perl handles inclusion paths differently than cgi?
I have a script that's written in perl, and executed as CGI. It works fine. Recently I have installed the mod_perl module into apache, and used the PerlModule ModPerl::Registry directive.
PerlModule ...
3
votes
2answers
216 views
Is it a bad idea to fork under mod_perl2?
Are there any counterindications to fork under mod_perl2? Should one use another way to run background process under mod_perl2?
3
votes
3answers
604 views
Browser Cache Control, Dynamic Content
Problem: I can't seem to get FireFox to cache images sent from a dynamic server
Setup: Static Apache Server with reverse proxy to a dynamic server (mod_perl2) at backend.
Here is the request URL for ...
3
votes
2answers
783 views
Safari browser won't display Error 401 page
I'm using Apache 2 and have a custom 401 page, in httpd.conf
ErrorDocument 401 /error/unauthorized.html
When I access a protected resource, all browsers show the basic http authentication dialog. ...
3
votes
1answer
717 views
How do you debug a mod_perl2 module without restarting?
Environment: Apache/2.2.11 (Win32) mod_apreq2-20051231/2.6.2-dev mod_perl/2.0.4-dev Perl/v5.10.0
Situation very similar to what's described in this discussion list post, except for being on win32.
I ...
2
votes
1answer
136 views
How can I disable pings in Apache::DBI?
I have a problem disabling validation of the connection in Apache::DBI.
From the perldoc:
Apache::DBI->setPingTimeOut($data_source,
$timeout)
This configures the usage of the ping
method, ...
2
votes
1answer
108 views
Testing Strawberry Perl on the same server as ActivePerl
I'd like to try out Strawberry Perl 5.12 on a win2k3sp2 server that currently uses ActivePerl 5.10 and mod_perl2. I have a separate Apache service set up for development but remember seeing something ...
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
3answers
126 views
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, ...
2
votes
1answer
244 views
How do I use mod_perl2 and Apache Bucket Brigades?
I'm writing an application to do proxying and rewriting of webpages on the fly and am pretty settled on using mod_perl2 - there is an existing implementation using mod_perl (v1) that I'm working from. ...
2
votes
1answer
387 views
mod_perl 2 variable and process corruption
We've just ported a fairly large codebase from an ancient Perl 5.005.03 CGI environment to mod_perl 2, and now that it's undergoing a public beta there are a few, possibly related, issues we're ...
1
vote
1answer
67 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"
...
1
vote
1answer
36 views
WebApp configuration in mod_perl 2 environment
I have a web app I'm writing in mod_perl 2. (It's a custom handler module, not registry or perlrun scripts.) There are several configuration options I'd like to have set at server initialization, ...
1
vote
2answers
761 views
Apache 2 on VM *sometimes* not finding mods-enabled directory
I'm running Apache 2 on an Ubuntu 10.04 server VM (ESXi 4.1) and getting something very weird:
Sometimes the mods-enabled directory is found.
Sometimes it's not. It seems to not be about 75% not ...
1
vote
2answers
391 views
How to modify post request content using mod_perl
How to modify post request content using mod_perl's filter/handler?
I can read request content in PerlResponseHandler but how do I "attach" modified content back into request?
Also, I don't want to ...
1
vote
1answer
79 views
Determining if the HTTP scheme is https or http in mod_perl2?
I need to work out if an incoming request is using SSL in a mod_perl environment - how can I do this reliably?
1
vote
1answer
205 views
Too many DB connection with mod_perl2 moose application
I have a mod_perl2 based web app that requires a connection to a mysql database. I have implemented the SQL connection specifics in a moose role.
Simplified, the role looks as follows:
package ...
1
vote
2answers
109 views
How do I tell mod_perl2 to find my Perl modules?
I just installed my system with Oracle 64-bit Linux5.4 running Apache Server version: Apache/2.2.3 and mod_perl 2.
Now, I have my Perl libraries set in a specific path: /my/perl/libs and I have ...
1
vote
1answer
203 views
Apache won't execute CGIs with Macports Perl5.8.9
I'm trying to get perl running under on my Apache 2 macports install. I'm hoping an experienced perl geek can help me out. I've...
Got Apache running just dandy. Macports installed it with perl5 ...
1
vote
1answer
82 views
Active State Perl - IOCP
I am thinking to use IOCP in perl in one of our network related code. Currently Active State Perl till 5.10 doesn't offer this feature? Is anyone aware of free module to use ASIO feature like IOCP in ...
1
vote
2answers
61 views
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
#---------------------------
package MyApache2::LogPerUser;
use ...
1
vote
1answer
148 views
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 ...
1
vote
2answers
522 views
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;
Everything ...
1
vote
1answer
143 views
How do I configure PerlSections in mod_perl2?
I'm trying to use a [PerlSection][1] to get the server name and then use it to configure some RewriteCond-RewriteRule pairs and some other things. It seems I can't get very far. It says you can do ...
1
vote
2answers
179 views
Is there a mod_perl2/Perl 5 equivalent to PHP's ignore_user_abort()?
I'm writing an internal service that needs to touch a mod_perl2 instance for a long-running-process. The job is fired from a HTTP POST, and them mod_perl handler picks it up and does the work. It ...
1
vote
1answer
87 views
Why is my <Perl> section variable only available sometimes under mod_perl?
In httpd.conf I have:
<Perl>
$MyPackage::foo = { ... };
</Perl>
According to the docs, this should, since it's qualified, persist into my perl scripts, which are run with the modperl ...
1
vote
3answers
137 views
Is “local our” the thing to use in object modules under mod_perl2, or only in scripts?
To tailor your scripts toward mp2, avoiding the need for any compatibility wrappers and such, it's said that you're supposed to declare variables using "local our" rather than "my". What about in ...
1
vote
3answers
90 views
Where can I find code profiling and/or code coverage modules that work with mod_perl2?
Is there a way to get this functionality under mod_perl2?
And can it be triggered via web requests as opposed to the command line? Or do I need to fake whatever $ENV variables and query strings and ...
1
vote
2answers
237 views
How can I access the Apache server configuration in a BEGIN block in mod_perl?
I've been trying to switch from using PerlSetEnv to using custom configuration directives. I have my configuration module with a copy of set_val from the docs:
sub set_val
{
local our ($key, ...
0
votes
1answer
51 views
Die not working from perl cgi
I have perl script which gets spawned from a cgi page and becomes a daemon process running on its own. If there is a die called from any module it is using, the script is getting called although it ...
0
votes
1answer
54 views
exceptions from parsing unquoted cookies in apache2
I'm using Apache2::Cookie (i.e., apache2 with modperl) to parse cookies with this code:
my %cookies=Apache2::Cookie->fetch;
do_something($cookies{"cookie1"});
# etc
This code has been running ...
0
votes
1answer
43 views
Perl Script to Monitor URL Using proxy credentials?
Please help on the following code, this is not working in our environment.
use LWP;
use strict;
my $url = 'http://google.com';
my $username = 'user';
my $password = 'mypassword';
my $browser = ...
0
votes
0answers
40 views
How to configure per-directory @INC path in apache
My ideal would be to have per-directory perl interpreters (with their own @INC, class variables, etc) as shown in examples in the mod_perl2 documentation.
[apache v2.2.16, mod_perl v2.0.4]
This ...
0
votes
1answer
44 views
How do I change the working directory of Apache2/mod_perl2
I have a mod_perl2 module that writes some files to the working directory. The standard working directory of mod_perl2 or Apache2 seems to be "/". Of course, Apache is not allowed to write files in ...
0
votes
1answer
94 views
How do I create a persistent connection handle (for MySQL and memcached) under mod_perl2 for each child process of Apache2?
I'm at my wit's end. My current (failed) implementation of small MySQL-backed webpage heavily relies on a module Project::Connection that stores two package-scoped (our'd) handles (mysql_handle and ...
0
votes
3answers
57 views
how to get the stat information for war file using perl
I have perl script that gets stat information for a given file. But it does not work for .war file (this file has symbolic link).
I am passing file location which has multiple files.
$fntxt ...
0
votes
0answers
25 views
Apache mod_rewrite question: multiple config re-writes
We're currently debating how we might best implement a set of re-writes.
I've a number of sites with upwards of 4,800 pages. These are going to be reduced to 400 pages overall - but I want to ensure ...
0
votes
2answers
85 views
Perl, mod_perl2 or CGI for a web-scraping service?
I'm going to design an open-source web service which should collect ("web-scrape") some data from multiple - currently three - web sites.
The web sites do not expose any web service nor any API, they ...
0
votes
0answers
63 views
mod_perl2 handler blocks DirectoryIndex
When I configure this mod_perl handler the way I think it should work it does work correctly itself but the default pages don't work - the index.html page doesn't come up when you just put / at the ...
0
votes
0answers
78 views
Random white screen when loading any page on my website
I encounter a problem I'm not familiar with, and I would like your help to diagnose the problem.
The problem:
Sometimes when loading any page on my website, it will only load a white blank screen. If ...
0
votes
0answers
30 views
An request lifetime object
I'd like to create an object with request lifetime. Moreover it has to be accessed from different handlers.
For example: I create it in PerlMapToStorageHandler and then can access it in ...