supporting differing versions of same perl module

2016-11-24 Thread mod_perl
Assume two endpoint URLs, one using the current and one using an old version of a perl module foo.pm for our application. This 2008 article shows how to prevent conflicts (old app using new foo.pm or vv) for this situation under modperl: http://www.slideshare.net/shixilun/module-versioning-wi

Problem with libapreq2-2.12

2009-05-21 Thread mod_perl User
Hi, While trying to install libapreq2-2.12 with mod_perl2/Apache2 in Solaris10, please help. # make Making all in . Making all in include make all-am Making all in library make all-am Making all in module Making all in apache2 make: Fatal error: Don't know how to make target `all-local'

Web Agent

2009-02-02 Thread mod_perl User
Hi, I am facing problem in RSA Web Agent 5.3 software. I got to install RSA Authentication on Apache web service for the first time. Find below the step done, 1. Configured Virtual Host to port 443 2. Installed mod_ssl and RSA WebAgent 5.3 on Apache2 (acetest is authentication successfull

Error While installing Data::Dumper module

2008-12-24 Thread mod_perl User
Hello, I tried installing Data::Dumper module, getting error when i make the file. >make cc -c-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -xarch=v8 -D_TS_ERRNO -xO3 -xspace -xildoff-DVERSION=\"2.121\" -DXS_VERSION=\"2.121\" -KPIC "-I/usr/perl5/5.8.4/lib/sun4-solaris-64int/CORE" Dum

Problem - Missing input data

2008-12-17 Thread mod_perl User
Hi !! I am facing problem in mod_perl2.0 while opening an handler Code as follows, my $r = Apache2::Request->new(shift, POST_MAX => 10 * 1024 * 1024);my $status = $r->parse(); Getting $status as 'Missing Input Data' Could you pls help me out!!! Thanks in advance!! __

Re: Variables in memory.

2004-09-22 Thread mod_perl
Greetings, The problem is that the script takes more than 3 or 4 seconds to execute sometimes. So we have a script that takes 3-4 seconds to execute, each varaiable is defined with my $var. and when the script ends it resets the value of the variables using undef. If multiple users execute the s

Variables in memory.

2004-09-22 Thread mod_perl
Greetings,   I'm having a problem with a script when accessed by multipile users. The script remembers the variables used by one user and passes them on to another user. What would be the best way to avoid this? Use sessions and hold the variables in a uniqe hash per session?   Thank you.