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.

learn more… | top users | synonyms

0
votes
0answers
6 views

singleton session using mod_perl

I have two pages: index.cgi and login.cgi. In my index.cgi i have a CGI::Session Object, and in login.cgi i am trying to get the CGI::Sesion Object, but I am getting another Object. index.cgi ...
1
vote
0answers
19 views

Attributes exchange using Net::OpenID::Consumer

my $csr = Net::OpenID::Consumer->new( ua => LWP::UserAgent->new, consumer_secret => '123456xXx', required_root => "http://www.myopenidsample.net/", ); my ...
0
votes
0answers
29 views

Error using mod_perl2 (Apache::Session::Postgres)

I am working on apache 2.2.15 + mod_perl2 for setting up a website. Using Apache::Session::Postgres and MasonX::Request::WithApacheSession. request_class => ...
2
votes
0answers
57 views

How do I single sign on between Bugzilla and Node.js?

Bugzilla runs behind the Apache webserver (mod_perl2) and stores the users in MySQL database. Node.js is it's own webserver. How do I single sign on the user in the Node.js app using the user data ...
2
votes
0answers
56 views

How can I both get raw post data and use Apache2::Request to access parameters?

Apache2::Request doesn't seem to provide a way to get the raw post data; is there one that I am missing? Alternatively, is there a way to read the post data separately (in a content handler - nothing ...
1
vote
1answer
28 views

mod_perl use request input properties in output? pnote?

Using mod_perl2, I'm trying to access the request args e.g. $r->args() in an output filter. Is it possible? I considered using pnotes however if i store the pnote reference against the ...
0
votes
0answers
16 views

apache mod_perl : dynamic handler based on url

My requirement is as below. if the requested url is like http://localhost/mod_perl/TopModule/ActualModule/method1 Then I should call TopModule::ActualModule->method1 () How can I configure ...
0
votes
1answer
154 views

Error while loading mod_perl.so

I have installed perl-5.8.9, mod_perl-2.0.7, Embperl-2.3.0 and httpd-2.2.22. And while starting apache, I get the error like the following (broken into multiple lines for readability): httpd: Syntax ...
1
vote
1answer
80 views

How to pass environment variable to an AutoLoaded mod_perl handler, to be used at module load time?

I have a HTTP Request Handler for mod_perl which needs to read an environment variable, from %ENV, at module load time. The environment variable is passed from the Apache config into mod_perl using ...
2
votes
1answer
55 views

How can one see all warnings under mod_perl

How can I make sure that I see all of Perl's warning and error messages when running a script under mod_perl? (Apache/2.2.16 (Debian) [...] mod_perl/2.0.4 Perl/v5.10.1) I feel like I have done ...
1
vote
2answers
71 views

HTML::FormHandler slow in Catalyst with mod_perl

I'm using HTML::FormHandler with my mod_perl/Catalyst app to generate a form for my users. It works fine, the only problem is that it slows down page load time by a lot. Here is my subroutine that ...
1
vote
2answers
82 views

mod_perl and multiple virtual hosts

We have this situation: - Apache running mod_perl - Multiple virtual hosts with own directories - Each virtual module has the same name for perl modules (development hosts, module differ a little bit, ...
0
votes
2answers
106 views

Serving up images under mod_perl using file::copy fails

I have a CGI script that serves up images using the File::Copy CPAN module: use File::Copy; .... (set appropriate content header) binmode STDOUT; copy $imageFile, \*STDOUT || die "Image delivery ...
0
votes
2answers
382 views

Set-Cookie then redirect working under perl CGI, but not mod_perl

I've got a funny problem with setting a cookie and then redirecting under mod_perl. I've had a regular cgi environment up until now, and the set cookie/redirect has never been an issue; everything has ...
5
votes
2answers
263 views

Moving from CGI to mod_perl. Understanding my, our, local

I've been using apache mod_cgi during some years. Now I am moving to mod_perl and I have found some problems, specially with subroutines. Until now I was never using my, our nor local; and the CGI ...
1
vote
2answers
218 views

Why Apache PerlModule directive doesn't set custom environment variables?

I am building a mod_perl website, and I need to set an environment variable that will be used in the Perl code. Until now I was using the PerlSetEnv directive to set this variable: PerlSetEnv ...
0
votes
1answer
159 views

mod_perl and oracle vs php and oracle performance

I have a large Perl app that I need to make faster; on the basis that it spends most of its running time talking to the DB I wanted to know how many well written SQL statements I could run and meet ...
0
votes
0answers
22 views

libapreq2 hanging when grabbing a param that does not exist on posts

I have installed Apache and mod_perl with Apache2::Request many times. Now building with versions Apache(2.2.22) Mod_perl2 (2.0.7) and libapreq2 (2.13) I get a hang when doing make test on libapreq2 ...
2
votes
2answers
3k views

Installing mod_perl-2.0.7 on Apache httpd-2.4.2

I am having an infuriating time trying to get an install of apache with perl. I am following the instructions on the mod_perl site located here: ...
2
votes
1answer
109 views

Using NYTProf with Mason under mod_perl

I'm trying to profile a web application written on top of HTML::Mason, I managed to set the profiler but it doesn't seem to pick-up the code inside the components. Is there a way to profile Mason ...
1
vote
1answer
116 views

Creating new database handles with mod_perl

I've run into an issue when stress testing mod_perl that the database connections are going away. I suspect that processes are sharing database connections, causing the issue. But I've followed all ...
1
vote
0answers
231 views

Apache children hanging / mod perl

The apache children on my server (ubuntu 12.04 upgraded from 11.10, apache 2.2.22, perl 5.14.2, mod_perl 2.0.5) are hanging. I tried to catch signals usr2, and alarm but without success (when using ...
7
votes
1answer
178 views

I cannot get Apache::VMonitor working in Apache2

I am moving from Apache 1.3 to Apache 2.063 and am having trouble getting Apache::VMonitor working. I tried a setup like this, similar to how I had it setup in my old Apache: <Perl> use ...
0
votes
1answer
144 views

method not found Apache2::RequesUtil->request

i have a small problem whith SOAP::Lite, When i try to run the following code, i have this error (Can’t locate object method “request” via package “Apache2::RequesUtil” at b.pl line 3) : ...
1
vote
1answer
157 views

Sanitize HTML::Mason arguments in the handler?

I'm using HTML::Mason, and after a recent security audit, it was discovered that some of our software is vulnerable to a header injection. Specifically this is related to the session_id argument, ...
0
votes
1answer
220 views

Error when trying to use XML::Parser under modperl2 - Could not load module

I've run into a problem when using XML::Parser under our modperl setup in production (on AIX 5.3). It works fine in development but fails on production with the following error: [Tue Apr 03 ...
2
votes
2answers
138 views

How can my Perl program tell if is running under mod_perl?

How can my Perl program tell if is running under mod_perl? I'm thinking along the lines of global variables or environment variables. I am only bothered about mod_perl >= 2.
1
vote
2answers
841 views

Apache Location directive for dynamic content fails if nested path

I'm using Apache 2.2x. Most of the content is generated via mod_perl. So, it's dynamic content that has no filesystem mapping. Perfect use of < Location >. Apache config: <Location ...
3
votes
1answer
152 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 ...
0
votes
1answer
133 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 ...
2
votes
3answers
493 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
2answers
245 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
233 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 = ...
1
vote
1answer
71 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, ...
0
votes
1answer
253 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
274 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
2answers
149 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
43 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 ...
0
votes
1answer
67 views

File operation slower when excuted by mod_perl than when executed in CGI

I have an application which runs on cgi. I have ported it to mod_perl2 ( using apache2::compat) and rewriting the cgi file into a mod_perl handler. Strangely, the performance I am obtaining due to the ...
14
votes
3answers
986 views

PSGI: What is it and what's the fuss about?

I have been trying to decide if my web project is a candidate for implementation using PSGI, but I don't really see what good it would do for my application at this stage. I don't really understand ...
0
votes
1answer
223 views

attached file is blank on the sent email

I have used this script to send the text file, the email go out with attachment but when I open the attached file it's blank. any idea why? did I miss anything. thx #!/usr/bin/perl -wl my $msg = ...
1
vote
1answer
890 views

CGI::escapeHTML() doesn't work

I am new to CGI, my code output: Hello, "<h1>Tom Cat</h1>"! Seems the escapeHTML() doesn't work. I develope my cgi code with XAMPP 1.7.2 on winxp. How can I fix it. Do I need ...
0
votes
1answer
95 views

Apache addon perl script for obtaining subdomain from a wildcard

I had an issue regarding this which I've manage to fix to this stage, but the only issue is finding out how this could be achieved by perl. This is a current structure of a link: ...
1
vote
3answers
2k 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 ...
0
votes
2answers
214 views

ModPerl::RegistryPrefork should make my old cgi work but

I developped a web app under CGI.pm.I'd like to switch to mod_perl2. My webapp worked under CGI but when i tried to change the mod, it's not working anymore while I didn't change anything in the ...
0
votes
1answer
178 views

Apache mod_perl2 migration problem

I have an apache2 config file under /etc/init.d/apache2/conf.d/ which uses Perl Sections. I am just trying to test if a module is loaded and configure apache as appropriate. if( Apache->module( ...
2
votes
1answer
221 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, ...
0
votes
1answer
57 views

filter is not working as expected

It's about mod_perl2 filter. Ideally a job of filter is to do something with input data & pass on the data to next filter or actual requested resource. In my case, I've a PerlInputFilterHandler ...
0
votes
1answer
76 views

error in generating response from PerlInputFilterHandler

I just have one filter in my location tag of httpd.conf: <Location /testproj/A> SetHandler modperl PerlInputFilterHandler MyApache2::Test </Location> Test is an PerlInputFilterHandler. ...
1
vote
2answers
2k views

installing CPAN module on windows

I am trying to install CPAN module on Windows 7. I don't have Active Perl so can't use PPM package. The steps given on all sites include these three steps: make, make test and make install. I know ...

1 2