Re: Apache2::ModLogConfig help needed

2011-03-03 Thread Torsten Förtsch
On Wednesday, March 02, 2011 22:02:21 Torsten Förtsch wrote: > Now, I have found a bug in apache that has been fixed somewhere between > 2.2.9 and 2.2.15. Well, it's probably not a bug per se. The behavior simply differs when mod_log_config is compiled in compared to a shared module. Torsten Fö

Re: Apache2::ModLogConfig help needed (feature suggestion)

2011-03-03 Thread Torsten Förtsch
On Thursday, March 03, 2011 07:43:54 Randolf Richardson wrote: > > I am in the process of developing an interface to mod_log_config. It can > > do 2 > > > > things: > > > > > > * make CustomLog call perl handlers > > * work as a log drain or log file > > [sNip] > > > BTW, if you feel urge to co

Re: Apache2::ModLogConfig help needed (feature suggestion)

2011-03-02 Thread Randolf Richardson
> Hi, > > I am in the process of developing an interface to mod_log_config. It can do 2 > things: > > * make CustomLog call perl handlers > * work as a log drain or log file [sNip] > BTW, if you feel urge to comment the idea or the implementation please don't > hesitate. What I think w

Apache2::ModLogConfig help needed

2011-03-02 Thread Torsten Förtsch
Hi, I am in the process of developing an interface to mod_log_config. It can do 2 things: * make CustomLog call perl handlers * work as a log drain or log file Log Drain = CustomLog "@perl: My::Handler" "%I%O" Assuming that My::Handler is defined it will receive 4 parameters here, the

Re: Help needed for mod_perl 1.31-rc6 and Apache::Bootstrap

2009-03-30 Thread Philippe M. Chiasson
eases than it does to write a response to >> the 'decline of mod_perl' thread that has been going around :) Plus, >> it will help make you a better mod_perl user and developer. >> >> >> Help needed with testing mod_perl 1.31 rc6 >> >> http://marc.

Re: Help needed for mod_perl 1.31-rc6 and Apache::Bootstrap

2009-03-30 Thread David E. Wheeler
thread that has been going around :) Plus, it will help make you a better mod_perl user and developer. Help needed with testing mod_perl 1.31 rc6 http://marc.info/?l=apache-modperl&m=123726111905517&w=2 benedict% USER=dougm /usr/local/bin/perl Makefile.PL \ > USE_APXS=1 \ >

Re: Help needed for mod_perl 1.31-rc6 and Apache::Bootstrap

2009-03-30 Thread Fred Moyer
On Mon, Mar 30, 2009 at 12:54 AM, Torsten Foertsch wrote: > On Sun 29 Mar 2009, Fred Moyer wrote: >> Need one more for a release > > All tests successful. > Files=3, Tests=13,  1 wallclock secs ( 0.04 usr  0.01 sys +  0.73 cusr > 0.06 csys =  0.84 CPU) > Result: PASS Great, thanks for the test.

Re: Help needed for mod_perl 1.31-rc6 and Apache::Bootstrap

2009-03-30 Thread Torsten Foertsch
On Sun 29 Mar 2009, Fred Moyer wrote: > Need one more for a release $ make test cp lib/Apache/Bootstrap.pm blib/lib/Apache/Bootstrap.pm PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib', 'blib/arch')" t/*.t t/00-load.t ... 1/11 # Testing Apache::Boots

Re: Help needed for mod_perl 1.31-rc6 and Apache::Bootstrap

2009-03-28 Thread Adam Prime
Adam Prime wrote: Fred, both build cleanly and pass all tests on my laptop with perl 5.8.8 on gentoo linux amd64. I'll build them on x86_64 tomorrow, and i can test on solaris on monday. Adam Both built and tested fine on perl, v5.8.8 built for x86_64-linux Adam

Re: Help needed for mod_perl 1.31-rc6 and Apache::Bootstrap

2009-03-28 Thread Perrin Harkins
Fred, > Help needed with testing mod_perl 1.31 rc6 Looking good on Mac OS 10.5, perl 5.8.8. > Help needed with testing Apache::Bootstrap This one didn't make it. PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, '

Re: Help needed for mod_perl 1.31-rc6 and Apache::Bootstrap

2009-03-27 Thread Adam Prime
going around :) Plus, >> it will help make you a better mod_perl user and developer. >> >> >> Help needed with testing mod_perl 1.31 rc6 >> >> http://marc.info/?l=apache-modperl&m=123726111905517&w=2 >> >> >> Help needed with testing Apache::Bootstrap >> >> http://marc.info/?l=apache-modperl&m=123250070925977&w=2 >>

Re: Help needed for mod_perl 1.31-rc6 and Apache::Bootstrap

2009-03-27 Thread Fred Moyer
erl' thread that has been going around :)  Plus, > it will help make you a better mod_perl user and developer. > > > Help needed with testing mod_perl 1.31 rc6 > > http://marc.info/?l=apache-modperl&m=123726111905517&w=2 > > > Help needed with testing Apache::Bootstrap > > http://marc.info/?l=apache-modperl&m=123250070925977&w=2 >

Help needed for mod_perl 1.31-rc6 and Apache::Bootstrap

2009-03-26 Thread Fred Moyer
l help make you a better mod_perl user and developer. Help needed with testing mod_perl 1.31 rc6 http://marc.info/?l=apache-modperl&m=123726111905517&w=2 Help needed with testing Apache::Bootstrap http://marc.info/?l=apache-modperl&m=123250070925977&w=2

Re: urgent help needed - this script does not chdir

2007-01-14 Thread Perrin Harkins
abhishek jain wrote: I am new to modperl and needs help, i have a script which works fine in non-modperl enviornment but when i include in modperl::registry then mine scripts when invoked via a browser finds itself in / directory http://perl.apache.org/docs/2.0/user/porting/compat.html#C_Apach

urgent help needed - this script does not chdir

2007-01-14 Thread abhishek jain
Hi, I am new to modperl and needs help, i have a script which works fine in non-modperl enviornment but when i include in modperl::registry then mine scripts when invoked via a browser finds itself in / directory i mean the file or script do not include the files with the require command i mean th

Re: urgent help needed

2006-08-01 Thread Tom Schindl
Ok. That's really basic database stuff: Normally every Select-statement you send to a database has 3 steps: 1. Prepare ClientLib sends Statement to Database which does different checks: - Syntax - do tables exists - ... 2. Execute ClientLib sends database information to execute the

Re: urgent help needed

2006-08-01 Thread Tom Schindl
That's completely easy you simple load Apache::DBI when the server starts see the Apache::DBI docu. The rest of your code stays as is. http://search.cpan.org/dist/Apache-DBI-1.01/lib/Apache/DBI.pm Tom philge philip schrieb: > am very new to mod perl, actually we were just using use DBI modules a

Re: urgent help needed

2006-08-01 Thread Tom Schindl
It seems you are using old documentations: philge philip schrieb: > Following are the scripts I tried to run.For the first script I got the > result and it shows mod_perl is installed and running but in the second > script am unable to load the apache module.I have also attached the part of > th

Re: urgent help needed

2006-07-31 Thread Robert Nicholson
Google for mod_perl book and read it. I'm sure it has the correct steps to get perl and @INC setup correctly.http://modperlbook.org/html/ch03_09.htmlAfter you've loaded the perl module itself you want to change @INC to include where Apache2is. If you want I think you can put that logic in an stanz

urgent help needed

2006-07-31 Thread philge philip
Dear colleague   I am a bioinformatics programmer from India.I need a guidance for configuring mod_perl2.0 in my server.   I have Apache.2.0.5.2 and Perl 5.8.5 installed in Fedora 3 operating system. I downloaded mod_perl2.0 version and installed it with the following commands:   Perl MakeFf

Re: urgent help needed

2006-07-27 Thread Philip M. Gollucci
philge philip wrote: PerlModule Apache2 No, this is obsolete and is your 1 and only problem based on what you sent. See here: http://perl.apache.org/docs/2.0/rename.html -- Philip M. Gollucci ([EMAIL PROTECTED]) 323.219.47

Re: urgent help needed

2006-07-27 Thread Kjetil Kjernsmo
On Thursday 27 July 2006 17:36, Boysenberry Payne wrote: > LoadModule apreq_module    /usr/local/apache2/modules/mod_apreq2.so I think this line is probably what you're missing, Philge. -- Kjetil Kjernsmo Information Systems Developer Opera Software ASA

Re: urgent help needed

2006-07-27 Thread Boysenberry Payne
Here is what I used to install libapreq2: at command line: perl5.8.8 MakeFile.PL --with-apache2-apxs=/usr/local/apache2/bin/apxs --enable-perl-glue --with-perl=/usr/local/bin/perl5.8.8 make && make test make install Then in the httpd.conf file: LoadModule apreq_module/usr/local/apache2/mo

urgent help needed

2006-07-27 Thread philge philip
Dear colleague   I am a bioinformatics programmer from India.I need a guidance for configuring mod_perl2.0 in my server.   I have Apache.2.0.5.2 and Perl 5.8.5 installed in Fedora 3 operating system. I downloaded mod_perl2.0 version and installed it with the following commands:   Perl MakeF

[mp1] sbrk() out of memory error (help needed with C library path issue)

2005-05-18 Thread Mark Stosberg
Hello, I'm trying to get Graphics::Magick to work with mod_perl on FreeBSD 4.10. On our FreeBSD 5.1 development server, everything works fine. It appears that as soon as the module is attempted to be used, an infinite loop is entered resulting an out of memory error. I used 'truss' to see what

Re: Help needed with mod_perl-1.99_13 and loading some AWStats modules

2004-05-18 Thread Tom Williams
Perrin Harkins wrote: On Tue, 2004-05-18 at 10:41, Tom Williams wrote: Thanks for the info. I'm responding off the list since my mod_perl questions have basically been answered. You really should keep these questions on the list. Others on there are much more knowledgeable than I am abou

Re: Help needed with mod_perl-1.99_13 and loading some AWStats modules

2004-05-18 Thread Perrin Harkins
Tom Williams wrote: I do notice that from time to time the multi-threaded child processes will die off and new ones spawn and I understand this is normal for the Apache 2.0 work MPM. So, each time a child process terminates the Perl interpreter for that process goes with it and the new child g

Re: Help needed with mod_perl-1.99_13 and loading some AWStats modules

2004-05-17 Thread Tom Williams
Perrin Harkins wrote: Tom Williams wrote: " If sometimes flags are here, problem is in loading the domains.pm (making country array not loaded correctly) file. Because yo use mod_perl and i known this module has a very special way to load pm files and to initialize perl variables (variables are

Re: Help needed with mod_perl-1.99_13 and loading some AWStats modules

2004-05-17 Thread Perrin Harkins
Tom Williams wrote: " If sometimes flags are here, problem is in loading the domains.pm (making country array not loaded correctly) file. Because yo use mod_perl and i known this module has a very special way to load pm files and to initialize perl variables (variables are kept in memory between

Help needed with mod_perl-1.99_13 and loading some AWStats modules

2004-05-17 Thread Tom Williams
Hi! I'm trying to get some help in figuring out why I'm having problems with some AWStats perl modules in my Apache 2.0.48 (worker MPM)/mod_perl-1.99_13/Perl 5.8.2 (multi-threaded) on Redhat 9 Linux environment. Here is a link to the AWStats weblog analyzer: http://awstats.sourceforge.net/ Bas

Re: libapreq help needed [SOLVED]

2004-05-13 Thread Aleksandr Guidrevitch
Hello Stas, perl Makefile.PL NO_HTTPD=1 \ EVERYTHING=1 \ USE_APACI=1 \ APACHE_SRC=../apache_1.3.29/src \ PREP_HTTPD=1 did the thing. Thanks -- Report problems: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html List etiquette: http://perl.apache.org/mai

Re: libapreq help needed

2004-05-13 Thread Stas Bekman
Aleksandr Guidrevitch wrote: Hi All, I'm having trouble compiling libapreq in userspace. [...] ake[1]: Entering directory `/home/ag/build/libapreq-1.3/c' gcc -c -fno-strict-aliasing -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -O2 -DVERSION=\"\" -DXS_VERSION=\"\" -fpic "-I/home/ag/apps/perl-5.8.

libapreq help needed

2004-05-13 Thread Aleksandr Guidrevitch
Hi All, I'm having trouble compiling libapreq in userspace. [EMAIL PROTECTED] mod_perl-1.29 $ cat .makepl_args.mod_perl NO_HTTPD=1 EVERYTHING=1 [EMAIL PROTECTED] mod_perl-1.29 $ /home/ag/apps/perl-5.8.4/bin/perl Makefile.PL && make && make install [EMAIL PROTECTED] mod_perl-1.29 $ cd ../apache_1.

Re: mason/mod_perl debugging help needed

2004-05-04 Thread Aaron Ross
Hi Andrew, > can reproduce the problem easily, and upon closer inspection with > strace and gdb I can tell that Apache is hanging in the same place Well, where is it? Also, what versions of various things are you running? And when you say "hang indefinitely"... what do you mean? Aaron -- A

mason/mod_perl debugging help needed

2004-05-03 Thread Andrew Waegel
Hello, Andrew Waegel here, popping over from the HTML::Mason list with a request for help. I've reached the limit of my debugging ability and am now looking for an experienced Apache/mod_perl/mason developer to help me debug a problem I'm having with my system. Some more details on the problem:

Re: Help Needed

2004-01-13 Thread Randy Kobes
On Tue, 13 Jan 2004, Douglas Andrik Russel Antonio Chet Morales wrote: > well, thank you Randy, so, i guess i have to get perl 5.8 > this is how the line i told you looks like when the apxs package is > downloaded > unless $vers =~ m!Apache/2.0!; > and this is how i fixed it > unle

Re: Help Needed

2004-01-13 Thread Douglas Andrik Russel Antonio Chet Morales
: "Randy Kobes" <[EMAIL PROTECTED]> To: "Douglas Andrik Russel Antonio Chet Morales" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Monday, January 12, 2004 1:07 PM Subject: Re: Help Needed On Mon, 12 Jan 2004, Douglas Andrik Russel Antonio Chet Morales wrote: &

Re: Help Needed

2004-01-12 Thread Randy Kobes
On Mon, 12 Jan 2004, Douglas Andrik Russel Antonio Chet Morales wrote: > Hi everyone, i'm asking for help, i'm a newbie trying to > install mod perl, I'm using win 98, active perl 5.6.0 > build 624, Apache 1.3.12 and Apache 2.0.48 with apxs. and > i've not been able to install mod perl, neither by

Help Needed

2004-01-12 Thread Douglas Andrik Russel Antonio Chet Morales
Hi everyone, i'm asking for help, i'm a newbie trying to install mod perl, I'm using win 98, active perl 5.6.0 build 624, Apache 1.3.12 and Apache 2.0.48 with apxs. and i've not been able to install mod perl, neither by using the packages on perl.apache.org, neither by using packages on theoryx5.uw