Re: mod_perl and Apache::Registry

2003-12-01 Thread Randy Kobes
On Mon, 1 Dec 2003, [iso-8859-1] Patricio Muñoz wrote: > Hi, > Finally, apache with mod_perl work fine, the sintaxis are: > > LoadFile "d:/perl/bin/perl58.dll" > LoadModule perl_module modules/mod_perl.so [...] > But when I test the sample in ASP, display errors > This sample work fine in Win98 s.

Re: mod_perl and Apache::Registry

2003-12-01 Thread Patricio Muñoz
Hi, Finally, apache with mod_perl work fine, the sintaxis are: LoadFile "d:/perl/bin/perl58.dll" LoadModule perl_module modules/mod_perl.so [...] Alias /asp/ "D:/Apache/Apache2/asp/" *CORE::GLOBAL::flock = sub { 1 }; PerlModule Apache::ASP Options Indexes MultiViews AllowOverride None

Re: mod_perl and Apache::Registry

2003-11-30 Thread Stas Bekman
Randy Kobes wrote: On Thu, 27 Nov 2003, Stas Bekman wrote: Randy Kobes wrote: [...] I think it is a ModPerl::BuildMM thing - this patch [ .. ] arranges for everything to be put under an Apache2/. Cool. Though, it's probably easier to read: $v =~ s{(blib([/\\])lib)}{$1$2Apache2}; or even:

Re: mod_perl and Apache::Registry

2003-11-29 Thread Randy Kobes
On Thu, 27 Nov 2003, Stas Bekman wrote: > Randy Kobes wrote: > [...] > > I think it is a ModPerl::BuildMM thing - this patch [ .. ] > > arranges for everything to be put under an Apache2/. > > Cool. Though, it's probably easier to read: > >$v =~ s{(blib([/\\])lib)}{$1$2Apache2}; > > or even:

Re: mod_perl and Apache::Registry

2003-11-28 Thread Patricio Muñoz
> Hi, > I work with mod_perl for Apache, but I have problem with Apache:Registry. > The output error.log is > > [Thu Nov 27 12:26:16 2003] [error] failed to resolve handler > `Apache::Registry' > [Thu Nov 27 12:26:16 2003] [error] [client 192.168.0.5] Can't locate > Apache/Registry.pm in @INC (@IN

Re: mod_perl and Apache::Registry

2003-11-28 Thread Swen Schillig
>or even: > > $v =~ s{ (blib[/\\]lib) }{ catdir $1, 'Apache2'}xe; > >I thought there is at least one more variation of the dir separator, wasn't it >':'? Yeah, I guess for MACs ! Mit freundlichen Grüßen / Best Regards Swen Schillig -- Reporting bugs: http://perl.apache.org/bugs/ Mail list

Re: mod_perl and Apache::Registry

2003-11-28 Thread Stas Bekman
Randy Kobes wrote: [...] I think it is a ModPerl::BuildMM thing - this patch Index: lib/ModPerl/BuildMM.pm === RCS file: /home/cvs/modperl-2.0/lib/ModPerl/BuildMM.pm,v retrieving

Re: mod_perl and Apache::Registry

2003-11-27 Thread Randy Kobes
On Thu, 27 Nov 2003, Stas Bekman wrote: > Randy Kobes wrote: [ ... ] > > Actually, ModPerl::Registry appearing as a > > lib/ModPerl/Registry.pm and Apache::Response appearing as a > > lib/Apache2/Apache/Response.pm does happen with Win32, > > which is different than Unix, where both appear > > und

Re: mod_perl and Apache::Registry

2003-11-27 Thread Stas Bekman
Randy Kobes wrote: On Thu, 27 Nov 2003, Stas Bekman wrote: [ .. ] Search your filesystem, you must have Apache/Response.pm if you have installed mp2. It seems that you have a messed up installation, as your ModPerl/Registry.pm resides under non-Apache2 subdir and you have /Apache/Apache2/lib/perl

Re: mod_perl and Apache::Registry

2003-11-27 Thread Randy Kobes
On Thu, 27 Nov 2003, Stas Bekman wrote: [ .. ] > Search your filesystem, you must have Apache/Response.pm > if you have installed mp2. > > It seems that you have a messed up installation, as your > ModPerl/Registry.pm resides under non-Apache2 subdir and > you have /Apache/Apache2/lib/perl. Did yo

Re: mod_perl and Apache::Registry

2003-11-27 Thread Patricio Muñoz
> Patricio Muñoz wrote: > [...] > > I see document http://perl.apache.org/docs/2.0/user/porting/compat.html and > > Adjust the httpd.conf > > > > Alias /perl/ "D:/Apache/Apache2/perl" > > > > > > SetHandler perl-script > > PerlResponseHandler ModPerl::Registry > > Options +ExecCG

Re: mod_perl and Apache::Registry

2003-11-27 Thread Stas Bekman
Patricio Muñoz wrote: [...] I see document http://perl.apache.org/docs/2.0/user/porting/compat.html and Adjust the httpd.conf Alias /perl/ "D:/Apache/Apache2/perl" SetHandler perl-script PerlResponseHandler ModPerl::Registry Options +ExecCGI PerlOptions +ParseHeaders And

Re: mod_perl and Apache::Registry

2003-11-27 Thread Randy Kobes
On Thu, 27 Nov 2003, [iso-8859-1] Patricio Muñoz wrote: [ .. ] > I see document > http://perl.apache.org/docs/2.0/user/porting/compat.html > and Adjust the httpd.conf > > Alias /perl/ "D:/Apache/Apache2/perl" > > > SetHandler perl-script > PerlResponseHandler ModPerl::Registry >

Re: mod_perl and Apache::Registry

2003-11-27 Thread Patricio Muñoz
> Jay R. Ashworth wrote: > [...] > >>Version: > >>Apache/2.0.48 (Win32) mod_perl/1.99_12-dev Perl/v5.8.1 > > > > > > That was the kicker. I believe the handler has changed it's name to > > ModPerl::Registry in mod_perl 2; at least, that's what I'm using, with > > apparent success. > > That's right

Re: mod_perl and Apache::Registry

2003-11-27 Thread Stas Bekman
Jay R. Ashworth wrote: [...] Version: Apache/2.0.48 (Win32) mod_perl/1.99_12-dev Perl/v5.8.1 That was the kicker. I believe the handler has changed it's name to ModPerl::Registry in mod_perl 2; at least, that's what I'm using, with apparent success. That's right, Jay. If you are migrating from

Re: mod_perl and Apache::Registry

2003-11-27 Thread Jay R. Ashworth
On Thu, Nov 27, 2003 at 02:43:46PM -0300, Patricio Muñoz wrote: > I work with mod_perl for Apache, but I have problem with Apache:Registry. > The output error.log is > > [Thu Nov 27 12:26:16 2003] [error] failed to resolve handler > `Apache::Registry' > [Thu Nov 27 12:26:16 2003] [error] [client 1

mod_perl and Apache::Registry

2003-11-27 Thread Patricio Muñoz
Hi, I work with mod_perl for Apache, but I have problem with Apache:Registry. The output error.log is [Thu Nov 27 12:26:16 2003] [error] failed to resolve handler `Apache::Registry' [Thu Nov 27 12:26:16 2003] [error] [client 192.168.0.5] Can't locate Apache/Registry.pm in @INC (@INC contains: D:/P