mod-perl Questions

2

Solved

The company I'm working at uses Perl for all "backend related" stuff. However, we would like to use some real-time communication between server-processes and connected clients via browser. We are ...
Bouley asked 27/11, 2012 at 9:59

2

Solved

I have a Perl script that is executing with mod_perl and works as an HTTP server. myServer.pl uses a module.pm. Everything looks fine when I use it with one user. but when I put it under pressure o...
Karaite asked 10/9, 2018 at 10:9

5

Solved

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 potenti...
Siclari asked 14/10, 2009 at 17:46

3

Solved

In a mod_perl application running on ubuntu 16.04 after a certain while where everything functions fine (a few days) we get a fatal message in the errorlog: failed to resolve handler MyHandler::...
Extraordinary asked 20/1, 2017 at 16:16

3

Solved

This question is related to an answer to a former question about memory handling by Perl. I've learned that one can free memory in Perl by explicitly using the undef function on an available scalar...
Hg asked 16/9, 2016 at 8:47

1

I'm trying to find out if there's a way to complete a response under mod_perl 2 without returning to the main handler. Haven't been able to find a method for that in the docs so far. The following ...
Thaliathalidomide asked 29/8, 2016 at 21:28

1

I have PHP 5.6.17 and Apache 2.4.10 running on Debian 8. I want to populate the PHP variable $_SERVER['REMOTE_USER'] with the Windows username, to log in the user if the username is in my database...
Unpen asked 17/3, 2016 at 16:20

4

Solved

With the release of OS X 10.10 Yosemite, Apple upgraded its Apache server to version 2.4. At release time, mod_perl 2.0.8 was incompatible with Apache 2.4, and mod_perl 2.0.9 had not yet been offi...
Cryolite asked 21/10, 2014 at 9:48

1

Solved

It's been a long while since mod_perl was really updated and seems like its development stoped at Apache 2.2. I've been waiting for it to become available for Apache 2.4 for now a very long while, ...
Pereira asked 27/7, 2014 at 0:56

2

Solved

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 p...
Ottoottoman asked 10/5, 2011 at 16:5

1

Solved

I have a mod_perl system accepting API calls from different client systems Suppose in the child perl program I have calls like this which does some heavy processing $conf{$client_id} = generate_c...
Headquarters asked 24/10, 2013 at 12:42

3

Solved

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: http://perl.apache.org/docs/2.0/user/install/install...
Vlada asked 20/6, 2012 at 20:51

2

Solved

This script: use warnings FATAL => 'all'; warn 'warning'; die 'death'; ...results in 'warning' getting logged, but doesn't die at that point, instead dying with 'death'. I have a mod_perl m...
Lyonnesse asked 11/6, 2013 at 14:56

3

Short version: What criteria should I use to evaluate possible candidates for a Perl "app server" (mod_perl replacement)? We are looking for some sort of framework which will allow executing vari...
Annmarieannnora asked 7/6, 2013 at 13:30

3

Solved

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 ...
Raffin asked 20/12, 2008 at 2:34

2

I need a regex to match any character or word except Q. I tried using the expression /\b((?!(Q)).+?)\b/ but it is not working!
Strike asked 15/5, 2013 at 4:20

3

Solved

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 Spre...
Doable asked 31/5, 2011 at 23:39

3

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 a...
Reviewer asked 7/4, 2011 at 18:20

2

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 ...
Wilderness asked 23/10, 2012 at 5:48

3

I had already installed Apache. I am using PHP for my scripting in localhost. Need to know how to run the perl script. I have installed sudo aptitude install libapache2-mod-perl2 I have created a d...
Stephine asked 18/1, 2012 at 13:47

1

Solved

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 ...
Boisvert asked 30/4, 2012 at 20:22

1

Solved

I'm doing some kind of research related to mod_perl-Apache-Perl compatibility. Recently I tried to build mod_perl 2.0.4 using Perl 5.14.2. The compilation phase was terminated prematurely with an e...
Sesquicentennial asked 12/5, 2012 at 13:5

2

Solved

I want to display the dollar value with two digits after the decimal point to denote the cents. In the below program the output is 23.24. Perl rounds the decimal places. How to avoid it. I want the...
Conjure asked 20/3, 2012 at 5:29

3

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 fi...
Williwaw asked 3/1, 2009 at 19:40

2

Solved

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 ...
Jewfish asked 14/1, 2009 at 7:13

© 2022 - 2024 — McMap. All rights reserved.