mod_perl v2 documentation bugs: location of PerlOptions +Parent, PerlSwitches

2009-01-09 Thread Rohan Carly
I use mod_perl 2.0.3, Apache/2.2.4, Perl 5.8.8 on Linux. I encountered some problems that would have been easier to solve with more documentation. 1. mod_perl Directives Argument Types and Allowed Location http://perl.apache.org/docs/2.0/user/config/config.html#mod_perl_Directives_Argument_Type

Single perl script (CGI) to handle all requests (within Directory) using Apache::Registry?

2009-01-09 Thread joe junkin
Within a Directory directive, Is there a way to force all requests to be handled by a single perl (CGI) script running under Apache::Registry? This is a legacy script using CGI.pm and no modperl calls, thus I can't use a modperl handler, but uses Apache::Registry. So regardless of what the request

unsubscribe

2009-01-09 Thread Hermen Lesscher
unsubscribe

test Fri, 09 Jan 2009 10:00:26 -0500

2009-01-09 Thread pgollucci
This is a test mailing

unsubscribe

2009-01-09 Thread Robert van Niekerk
unsubscribe

[PATCH] www/p5-libapreq: update to 1.34

2009-01-09 Thread Philip M. Gollucci
>Submitter-Id: current-users >Originator:Philip M. Gollucci >Organization: Riderway Inc. >Confidential: no >Synopsis: [PATCH] www/p5-libapreq: update to 1.34 >Severity: non-critical >Priority: low >Category: ports >Class: update >Release: FreeBSD 7.1-PRERE

Re: Setting LD_LIBRARY_PATH for a forked process

2009-01-09 Thread Heiko Jansen
Am Freitag, den 09.01.2009, 10:25 +0100 schrieb Torsten Foertsch: > On Fri 09 Jan 2009, Raymond Wan wrote: > > It is possible I'm doing something wrong, but so far, this isn't > > working. And if I replace the $cmd with a Perl script and try to > > print out $ENV{LD_LIBRARY_PATH}, there is nothin

Re: Setting LD_LIBRARY_PATH for a forked process

2009-01-09 Thread Torsten Foertsch
On Fri 09 Jan 2009, Raymond Wan wrote: > It is possible I'm doing something wrong, but so far, this isn't > working.  And if I replace the $cmd with a Perl script and try to > print out $ENV{LD_LIBRARY_PATH}, there is nothing.   I think you need this one: http://search.cpan.org/~stas/Env-C-0.08/C.

Setting LD_LIBRARY_PATH for a forked process

2009-01-09 Thread Raymond Wan
Hi all, I'm developing a web server which forks a process and then the child process goes off and does some processing and I do not want to wait for it to return. The child process runs a C++ program (i.e., not a Perl script). Thanks to replies here a while back, I got things working by perf