Re: [modperl2] Note on the win32 docs

2002-05-20 Thread Peter Rothermel
I've run into a problem with mod_perl configuration instructions with for Registry scripts. I've built mod_perl and copied the blib directly under my Apache2 (server root) directory. Here's the errors I get run I start apache: C:\WGTI\Apache2\binapache Using C:\WGTI\Apache2/blib [Mon

Re: [modperl2] Note on the win32 docs

2002-05-20 Thread Doug MacEachern
On Mon, 20 May 2002, Peter Rothermel wrote: I've run into a problem with mod_perl configuration instructions with for Registry scripts. I've built mod_perl and copied the blib directly under my Apache2 (server root) directory. sounds like a bug that has been fixed in cvs. try the cvs

Re: [modperl2] Note on the win32 docs

2002-05-20 Thread Peter Rothermel
Thanks for the info. Latest from cvs works fine. Any idea how close _02 might be to release? -pete Doug MacEachern wrote: On Mon, 20 May 2002, Peter Rothermel wrote: I've run into a problem with mod_perl configuration instructions with for Registry scripts. I've built mod_perl

Re: [modperl2] Note on the win32 docs

2002-05-20 Thread Doug MacEachern
On Mon, 20 May 2002, Peter Rothermel wrote: Thanks for the info. Latest from cvs works fine. Any idea how close _02 might be to release? hopefully in a day or three.

Re: [modperl2] Note on the win32 docs

2002-05-13 Thread Peter Rothermel
Excellent document. A slight enhancement request. Could you give some details on how to separate the modperl installation from the Perl installation? I believe the latest binary release has the mod_perl installed in a separate blib under the C:\Apache2 directory. thanks -pete

Re: [modperl2] Note on the win32 docs

2002-05-13 Thread Randy Kobes
On Mon, 13 May 2002, Peter Rothermel wrote: Excellent document. A slight enhancement request. Could you give some details on how to separate the modperl installation from the Perl installation? I believe the latest binary release has the mod_perl installed in a separate blib under the

Re: [modperl2] Note on the win32 docs

2002-05-13 Thread Peter Rothermel
Randy Kobes wrote: On Mon, 13 May 2002, Peter Rothermel wrote: The blib/ directory under C:/Apache2 doesn't actually have to be moved anywhere - one includes it with the directive PerlSwitches -Mblib=C:\Apache2 specified in the supplied httpd.conf So, for this

Re: [modperl2] Note on the win32 docs

2002-05-13 Thread Randy Kobes
On Mon, 13 May 2002, Peter Rothermel wrote: When you built the mod_perl distribution did you use perl Makefile.PL MP_AP_PREFIX=C\Apache2 MP_INST_APACHE2=1 LIB=C:\Apache2\blib\lib Ah ... I just used perl Makefile.PL MP_AP_PREFIX=C:\Apache2 MP_INST_APACHE2=1 and then copied the blib/

RE: [modperl2] Note on the win32 docs

2002-05-10 Thread Randy Kobes
On Wed, 8 May 2002, Alessandro Forghieri wrote: The script that follows *DOES* in fact send a header (so my previous msg. is partly wrong; I am used to read/write print $q-header(-content_type=text/html) rather than simply print header, but then I am rather long winded. OTOH the script

RE: [modperl2] Note on the win32 docs

2002-05-10 Thread Doug MacEachern
On Fri, 10 May 2002, Randy Kobes wrote: You're right - PerlSendHeader On should be there ... I'll modify the draft accordingly. Thanks. actually, the 2.0 config is: PerlOptions +ParseHeaders PerlSendHeader On is just alias of that for backwards compat.