Re: Setting PerlRequire in a Perl section

2001-09-21 Thread Perrin Harkins
Actually, yes, I had. PerlVINC is not really what I needed, the goal was not to reload %INC per VirtualHost, the need was to have a single PerlRequire set up @INC properly per VirtualHost (so Apache::StatINC would work). Ordinary this would have been done with something like 'use lib

RE: Setting PerlRequire in a Perl section

2001-09-21 Thread Alex Harper
; Stas Bekman Cc: [EMAIL PROTECTED] Subject: Re: Setting PerlRequire in a Perl section Actually, yes, I had. PerlVINC is not really what I needed, the goal was not to reload %INC per VirtualHost, the need was to have a single PerlRequire set up @INC properly per VirtualHost (so Apache

Re: Setting PerlRequire in a Perl section

2001-09-21 Thread Perrin Harkins
I understood the limitation of the single interpreter, the problem again was to append to @INC per VirtualHost. It's confusing when you say that, since there's only one @INC for everything. I'm interpreting this as meaning that you have a bunch of applications with different install

RE: Setting PerlRequire in a Perl section

2001-09-21 Thread Alex Harper
I understood the limitation of the single interpreter, the problem again was to append to @INC per VirtualHost. It's confusing when you say that, since there's only one @INC for everything. I'm interpreting this as meaning that you have a bunch of applications with different install

Re: Setting PerlRequire in a Perl section

2001-09-20 Thread Stas Bekman
Alex Harper wrote: Hi, I'm trying to configure a PerlRequire directive in a Perl section of an .htaccess file. This is done so that I can have several directories (one per VirtualHost) load a different PerlRequire startup without resorting to absolute paths for the startup for each

RE: Setting PerlRequire in a Perl section

2001-09-20 Thread Alex Harper
mod_perl 2.0 has solved these problems already, but it's not in production yet :) Well that give me something to look forward to :-) Have you read this one? http://perl.apache.org/guide/config.html#Is_There_a_Way_to_Modify_INC_o n You probably need to

Re: Setting PerlRequire in a Perl section

2001-09-20 Thread Stas Bekman
Alex Harper wrote: mod_perl 2.0 has solved these problems already, but it's not in production yet :) Well that give me something to look forward to :-) Have you read this one? http://perl.apache.org/guide/config.html#Is_There_a_Way_to_Modify_INC_o n

Setting PerlRequire in a Perl section

2001-09-19 Thread Alex Harper
Hi, I'm trying to configure a PerlRequire directive in a Perl section of an .htaccess file. This is done so that I can have several directories (one per VirtualHost) load a different PerlRequire startup without resorting to absolute paths for the startup for each VirtualHost. Since FindBin