cvs commit: modperl-2.0/lib/Apache Status.pm

2003-01-25 Thread stas
stas2003/01/25 05:26:11 Added: lib/Apache Status.pm Log: started porting Apache::Status to 2.0: - adjust style - use mod_perl 2.0 api (trying to get away from using compat.pm) - adjust the 'registry scripts' logic to work with the new registry cache (present scripts by

MP2 and Databases

2003-01-25 Thread Philip M. Gollucci
What is the status of DBI, Apache::DBI and mod_perl-1.99_09-dev, and Apache 2.1.0-dev ? I saw Ask released .89 a few weeks ago to CPAN. I just installed it, but I'm getting errors when trying to load it in the startup.pl [Sat Jan 25 03:15:26 2003] [error] Can't locate Apache.pm in @INC

Re: [MP2] Perl_Tstack_sp_ptr

2003-01-25 Thread Stas Bekman
Xiaodong Shen wrote: Thanks for the reply. Several things to clear: 1. I have successfully passed the make make test make install phase. 2. I have moved into Server configuration phase and was doing the mod_perl rocks thingy, where the error happens. 3. Before seeing your reply, I already

[ MP2] startup problem with XML::LibXML

2003-01-25 Thread pascal barbedor
PROBLEM : APACHE SEGFAULT WITH XML::LibXML on WIN32 I use all in one perl + apache + modperl2 RK binaries but I replace c:\perl\bin\perl58.dll with perl58.dll obtained after separately(and succesfully) compiling perl with vc6 DEBUG so that I get symbols in perl58.dll so the call stack

Re: PerlSwitches -M and @INC

2003-01-25 Thread Stas Bekman
Dr. Helmut Zeilinger wrote: I tried: PerlOptions +Parent # PerlOptions +Clone PerlModule Apache2 PerlModule Apache::compat PerlSwitches -Mlib=/et/www/envirotex/lib The result is a Segmentation fault without any further messages on the screen and in the error_log file. I can't

Perl interface to the Apache server API

2003-01-25 Thread Paul Dyer
Hi, Does anyone know if this interface has been abandoned in verion 2.0?? At perl.apache.org/docs/1.0/api/index.html, there is documentation for the 1.0 API. Not only is the documentation missing in 2.0, but it appears to not have be included?? Please let me know what is expected of 2.0 as

data loss when using $r-get_client_block mod_perl 1.99_08

2003-01-25 Thread Udo Rader
hi, I see that the new version of mod_perl has $r-read fixed now to read exactly the given bytes. $r-get_client_block however is still buggy. If for example I do the following: CUT my $len = $r-headers_in-{'content-length'}; print reported length is $lenbr; my $buf;

do as temp solution for require problem ?

2003-01-25 Thread [EMAIL PROTECTED]
Hi, I think mod_perl is wonderful but unfortunately enough the require function does not work as it does in CGI. Is using the function do the only workaround as temporary solution till this problem is fixed in a/the next mod_perl version? Cheers, Bart

Re: Perl interface to the Apache server API

2003-01-25 Thread Leon Brocard
Paul Dyer sent the following bits through the ether: Does anyone know if this interface has been abandoned in verion 2.0?? You appear to have completely ignored the Apache 2 part of the website: http://perl.apache.org/docs/2.0/ Leon -- Leon

Re: [ MP2] startup problem with XML::LibXML

2003-01-25 Thread pascal barbedor
it is version 1.54 pascal - Original Message - From: Matt Sergeant [EMAIL PROTECTED] To: pascal barbedor [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Saturday, January 25, 2003 8:00 PM Subject: Re: [ MP2] startup problem with XML::LibXML On Saturday, Jan 25, 2003, at 09:49

Mod_Perl and Cpanel....

2003-01-25 Thread Richard
our machines all run Cpanel, does anyone have any experience running Cpanel WITH mod_perl installed, and it run well? I have heard that Cpanel and mod_perl will conflict with each other. So I don't want to install mod_perl without being sure it will not crash our servers. I'd appreciate

Re: [OT] MLDBM size limit?? :'(

2003-01-25 Thread Stas Bekman
Jim Morrison wrote: Guys, Sorry this is a little off topic... Is there a size limit on DBM's? (Or Linux files for that matter.. ) I've thrown some details of my box/code below.. Thing is I'm getting a write error and it seems to always happen when the DBM gets to 2.0Gb .. (you may think I'm

Re: do as temp solution for require problem ?

2003-01-25 Thread Stas Bekman
[EMAIL PROTECTED] wrote: Hi, I think mod_perl is wonderful but unfortunately enough the require function does not work as it does in CGI. Is using the function do the only workaround as temporary solution till this problem is fixed in a/the next mod_perl version? Have you read:

Re: data loss when using $r-get_client_block mod_perl 1.99_08

2003-01-25 Thread Stas Bekman
Udo Rader wrote: hi, I see that the new version of mod_perl has $r-read fixed now to read exactly the given bytes. $r-get_client_block however is still buggy. If for example I do the following: CUT my $len = $r-headers_in-{'content-length'}; print reported length is $lenbr; my