Re: Per Vhost @INC

2002-12-10 Thread Kyle Oppenheim
I think you are confusing @INC and %INC. You should probably read up on the difference between the two. The mod_perl guide provides a lot of background on this issue: http://perl.apache.org/docs/general/perl_reference/perl_reference.html#use__ __requiredo_INC_and__INC_Explained In any ca

Per Vhost @INC

2002-12-10 Thread siberian
This has come up a few times but I still do not fully understand how it works. Here is my situation. I have a body of software that runs in a specific namespace with about 10 libraries. (TourEngine::**). I have many versions of this software and will need the ability to, on the same server, ru

CGI.pm's path_info will not stay shared

2002-12-10 Thread Ron Savage
Folks I'm aware of this doc: http://perl.apache.org/docs/general/perl_reference/perl_reference.html Click on: 'my() Scoped Variable in Nested Subroutines' for details. and I've just had a similar experience with $q -> path_info(). Context: In this environment: Win2K, Apache 1.3.26, mod_perl 1.2

Re: Apache 2?

2002-12-10 Thread Vivek Khera
> "GC" == Grant Cooper <[EMAIL PROTECTED]> writes: GC> Is there any documention of a HOWTO or a tutorial about a lightweight GC> front-end proxy that loads the data from the mod_perl try this: perldoc mod_perl_tuning It comes with mod_perl, conveniently. Nobody has sent me any updates in tw

Re: Problems with Apache::compat and german special chars

2002-12-10 Thread Tom Schindl
one more patch on Apache::compat. When SUBMITING-Forms a whitespace(\s+) is replaced by +. We have to retransform this. Am Son, 2002-12-08 um 21.46 schrieb Tom Schindl: > Problems with Apache::compat > > CGI-PARAM-STRING: header=%DC%DC%DC%DC&body=%D6%D6%D6%D6&type=save_thread > > -

Re: Problems with Apache::compat and german special chars

2002-12-10 Thread Tom Schindl
I've found a work around for the problem. I have replaced cut--- return map { s/%([0-9a-fA-F]{2})/pack("c",hex($1))/ge; $_; } split /[=&;]/, $string, -1; cut--- by cut