Tagged Questions
mod-perl is an Apache 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.
15
votes
9answers
2k views
The future of Perl? (Perl 6, Employability)
I've found a few related questions, like Python V Perl and Is Perl Worth it?, but I can't seem to find anything that directly addresses this question.
Is there a legitimate future in Perl? I work in ...
7
votes
4answers
2k views
How do I make Apache handle .pl (Perl) files, using mod_perl?
I'm using Apache 2. I know how to handle .pl files as "cgi-script", but mod_perl is supposedly way faster. I successfully built and installed mod_perl, but how do I change httpd.conf so that .pl files ...
7
votes
2answers
2k views
mod_perl vs mod_fastcgi
I'm developing a web app in Perl with some C as necessary for some heavy duty number crunching. The main problem I'm having so far is trying to decide if I should use mod-perl, mod-fastcgi or both to ...
7
votes
6answers
354 views
How can I execute inefficient code only at compile time when using mod_perl?
I've been benchmarking the performance of a framework I'm writing in Perl and I'm getting a 50% decrease in requests per second over our existing codebase (some hit is understandable, because we're ...
6
votes
2answers
414 views
Perl Connection Pooling
Right now we have a large perl application that is using raw DBI to connect to MySQL and execute SQL statements. It creates a connection each time and terminates. Were starting to approach mysql's ...
6
votes
2answers
369 views
How can I limit the size of HTTP POST requests in mod_perl?
I'm working on a page which accepts file uploads. In theory, I can
detect when the file they're sending me is too big (by looking at the
Content-Length of their response), and refuse to accept the ...
6
votes
1answer
691 views
How can I determine which SSL client certificate a connection is using in mod_perl?
I am writing a web service in Perl that will run under SSL (HTTPS) with client certificates.
How can I determine which certificate is being used by the client in the current connection so I can ...
5
votes
1answer
93 views
How can one manually create an Apache request object?
Is there a good API that would allow someone to create an object of Apache class?
The class itself seems to lack a constructor; and synopsis wasn't very helpful. My suspicion is that it's somehow ...
5
votes
2answers
248 views
File download results in “IE was not able to open this internet site”
I'm at a loss for this one. I've looked all over and there seem to be a lot of solutions, but they aren't working for me. I've got a CGI::Application app generating a MS Excel spreadsheet with ...
5
votes
3answers
200 views
How can I track down CPU intensive requests in mod_perl?
Using Apache 2.2 and mod_perl on Ubuntu 8.04 I have several applications on a server. Using Apache in pre-forking mode. Usually things are working well but once in a while I see one of Apache ...
5
votes
1answer
108 views
How can I defer processing during apache / mod_perl page rendering?
I have an apache2 / mod_perl website. On one page, I need to do some server/server communication via SOAP.
The results of this communication are not required for the rendering of the page (but user ...
5
votes
3answers
475 views
How can I provide a temp file download using mod_perl and CGI::Application?
My web app runs on Apache mod_perl using CGI::Application. I want to provide a download of a generated file. In the past (before we were using mod_perl and CGI::App) I just spooled out a csv file to ...
5
votes
5answers
1k views
How do I track down a mod_perl memory leak?
I'm using mod perl 1.3.0 with apache 1.3.41 perl version 5.8.6, and the memory size seems to grow about 4k every 3rd or 4th request. The Perl script we are running is simply:
print "Content-type: ...
5
votes
2answers
489 views
How do I have mod_perl reload source files on change?
I am developing an application with mod_perl and restarting the server every time I change code is a huge drag. I'd like to still use mod_perl for development because it's what I plan on using for ...
4
votes
1answer
114 views
Can Perl's Log::Log4perl's log levels be changed dynamically without updating config?
I have a Mason template running under mod_perl, which is using Log::Log4perl.
I want to change the log level of a particular appender, but changing the config is too awkward, as it would have to pass ...
4
votes
1answer
72 views
How to detect if web script in Perl is run using ModPerl::Registry (mod_perl handler)?
Is it possible in to detect in web app run under mod_perl if it is run using ModPerl::Registry?
I want to write script which would run under ModPerl::Registry (or similar handler), but can function ...
4
votes
1answer
179 views
mod_perl memory leak
I recently discovered that one of our sites has a memory leak in it, it's very strange because it happened all of the sudden. I've used GTop to measure the memory size per process and it tells me that ...
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
2answers
78 views
Why does the browser hang when I register a cleanup handler in mod_perl?
I'm using $r->pool->cleanup_register(\&cleanup); to run a subroutine after a page has been processed and printed to the client. My hope was that the client would see the complete page, and ...
4
votes
4answers
764 views
What is the easiest way in pure Perl to stream from another HTTP resource?
What is the easiest way (without opening a shell to curl and reading from stdin) in Perl to stream from another HTTP resource? I'm assuming here that the HTTP resource I'm reading from is a ...
4
votes
2answers
435 views
How do I have a persistent DBIx::Class in CGI::Application with mod_perl?
I am using CGI::Application on mod_perl with DBIx::Class and I'd like to have something like new define a new dbic schema on instantiation. So far I haven't been able to get it to work. The closest ...
4
votes
4answers
261 views
MySQL driver segfaulting under mod_perl - where to look for issue
I have a webapp that segfaults when the database in restarted and it tries to use the old connections. Running it under gdb --args apache -X leads to the following output:
Program received signal ...
4
votes
6answers
5k views
Is there a difference between apache module vs cgi (concerning security)?
E.g. Is it more secure to use mod_php instead of php-cgi?
Or is it more secure to use mod_perl instead of traditional cgi-scripts?
I'm mainly interested in security concerns but speed might be an ...
3
votes
1answer
111 views
Perl CGI gets parameters from a different request to the current URL
This is a weird one. :)
I have a script running under Apache 1.3, with Apache::PerlRun option of mod_perl. It uses the standard CGI.pm module. It's a regularly accessed script on a busy server, ...
3
votes
1answer
71 views
Efficiently monitoring httpd children and signalling those using too much memory/cpu
We use Apache/mod_perl 2 and occasionally get a child httpd process that spins out of control, either consuming ever-increasing amounts of memory or max cpu.
I would like to monitor for such children ...
3
votes
1answer
130 views
How do I use the debugger with mod_perl
I'm trying to attach the Perl debugger to Apache and mod_perl. Our
environment is quite complex (lots of additional stuff (eg Catalyst)
configured with Apache) and the engineers who configured it are ...
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
1answer
108 views
What is the right way to serve dynamically generated images using Apache and mod_perl?
I have an Apache2/mod_perl2 system up and running.
I'm using GD to create an image on the fly, and I'm then printing it like this:
$r->content_type('image/png');
binmode STDOUT;
print ...
3
votes
1answer
240 views
Why does my script use so much more memory when run with mod_perl?
I'm trying to learn how to profile perl memory.
I have a very simple Perl hello-world script and I want to know its size in memory.
I use GTop utility to measure the memory (recommended in mod_perl ...
3
votes
2answers
215 views
Calling clean up code in mod_perl environment
Some quote to pick from practical mod_perl
"Usually, a single process serves many requests before it exits, so END blocks cannot be used if they are expected to do something at the end of each ...
3
votes
2answers
1k views
Perl REST flow layout
I'm using Apache and Perl (modperl), with Handlers to handle requests. I'm new to this, and I'm not quite sure how to lay things out in a sensible way.
Right now I have the following:
package ...
3
votes
3answers
984 views
How do I export Readonly variables with mod_perl?
I'm trying to make it easier to follow some Perl Best Practices by creating a Constants module that exports several of the scalars used throughout the book. One in particular, $EMPTY_STRING, I can ...
3
votes
3answers
828 views
mod_perl headers_in not working
I'm using mod_perl 2 with Apache 2.2.3 on Red Hat 5.2, and I'm trying to access the request headers, but the Apache2::RequestRec headers_in method (or rather, its return value) is not behaving the way ...
3
votes
2answers
776 views
How can I port Perl code from mod_perl to FastCGI?
We have an existing Perl application that supports mod_perl. However, our new host (Dreamhost) does not suppport mod_perl, only FastCGI; thus necessitating the port.
The existing code does not use ...
3
votes
2answers
175 views
Why does loading my Perl module in mod_perl causes Apache to hang?
I have have a mod_perl program that implements its own handler function (i.e. it's not using Apache::Registry).
I have a parser module written using Parse::RecDescent.
I have been successfully ...
3
votes
3answers
679 views
How do I use a vendor Apache with a self-compiled Perl and mod_perl?
I want to use Apple's or RedHat's built-in Apache but I want to use Perl 5.10 and mod_perl. What's the least intrusive way to accomplish this? I want the advantage of free security patching for the ...
2
votes
1answer
130 views
Apache mod_perl processes hang in futex_wait state
I run a fairly popular browser-based web game, running under Apache (worker) and mod_perl. During peak times, when the server is handling about 4200 requests per minute, once every 3-15 minutes or so ...
2
votes
1answer
70 views
Do CGI and mod_perl play nicely together?
I've got an apache web server (without mod_perl) that's been running just fine for a long time.
It has been suggested that we use mod_perl to improve the performance of some scripts.
I want to go ...
2
votes
1answer
46 views
mod_perl debugging & viewing source
I've recently started work on a project that uses mod_perl. I'm attempting to use the Perl debugger to debug some Perl scripts that are running under mod_perl. I start the debugger with the ...
2
votes
2answers
101 views
What's the canonical way to make the directory that has the current source file to be searched by `use` and `require` statements in Perl in mod_perl?
I tried
BEGIN {
unshift @INC, 'current_path_string';
}
But it only works for use, when require, it's not searched.
Is there a work around?
2
votes
1answer
118 views
What do these numbers before and after mason responses mean?
I am using mod_perl 2, mason, and apache 2.2 on Ubuntu 10.10 (x86) (standard packages from apt). When I send a HTTP request to my server, I get the following:
$ nc localhost 80 < ...
2
votes
2answers
318 views
perl open file error handling
I want to do some task when the file is not opened in the Perl program below. But when I run it, I am getting syntax errors. What's wrong with it?
my $LOGPATH = $ENV{DATA_OU};
my $LOGFILE = ...
2
votes
2answers
198 views
Problem with the POSIX module
After moving my mod_perl site from Linux hosting to FreeBSD, I have this error in the logfile:
Your vendor has not defined POSIX macro SIGRTMIN, used at ../../lib/POSIX.pm (autosplit into ...
2
votes
2answers
896 views
How do I use connect to DB2 with DBI and mod_perl?
I'm having issues with getting DBI's IBM DB2 driver to work with mod_perl. My test script is:
#!/usr/bin/perl
use strict;
use CGI;
use Data::Dumper;
use DBI;
{
my $q;
my $dsn;
my ...
2
votes
2answers
151 views
Can I run my mod_perl aplication as an ordinary user
Can I run my mod_perl aplication as an ordinary user similar to running a plain vanilla CGI application under suexec?
2
votes
1answer
96 views
How can I beta test web Perl modules under Apache/mod_perl on production web server?
We have a setup where most code, before being promoted to full production, is deployed in BETA mode - meaning, it runs in full production environment (using production database - usually production ...
2
votes
2answers
1k views
Why do I get “redefine” warnings with “use constant” under mod_perl?
I run CGI script with apache2 and I have this warning lines in error.log (I removed all similar lines from the output):
[Thu Jul 30 09:39:37 2009] upload.pl: Constant subroutine ...
2
votes
2answers
283 views
Catching errors with both mod_cgi & mod_perl
Thanks to everyone in advance.
I've been doing some research on error handling and I don't feel like I'm getting a solid understanding of what I should do.
Preamble: My code is living in Apache and ...
2
votes
4answers
487 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 ...