Re: Newbie help with Apache2::Request configuration

2006-01-03 Thread Jeff Armstrong
Original Message From: "Philip M. Gollucci" <[EMAIL PROTECTED]> To: Jeff Armstrong <[EMAIL PROTECTED]> Cc: mod_perl List Subject: Re:Newbie help with Apache2::Request configuration Date: Sun Jan 01 2006 21:01:39 My apologies for being a dumbo, your forbearance is much appreci

Re: Newbie help with Apache2::Request configuration

2006-01-03 Thread Philip M. Gollucci
Jeff Armstrong wrote: I still can't seem to get this to work: the Apache error.log says: This file is not one of the files in the Debian manifest for libapache2-request-perl. Are there any special build options I need to generate this handle.al? I would strongly urge you to build it from SVN.

Found it !!! Why is my apache parent process growing...

2006-01-03 Thread Len Kranendonk
I found it !!! Issueing an "apachectl restart" (or kill -HUP) make the apache parent process size grow ! This is the case on all of our FreeBSD boxes. I can't reproduce it on Linux. Take a look at this: apachectl start # ps

Re: Found it !!! Why is my apache parent process growing...

2006-01-03 Thread Philip M. Gollucci
Len Kranendonk wrote: Philip, as you're using FreeBSD too, could you confirm this ? vegeta# apachectl start vegeta# ps -aux | grep httpd | grep root USERPID %CPU %MEM VSZ RSS TT STAT STARTED TIME COMMAND root 50770 7.5 2.7 16828 14180 ?? Ss 10:55AM 0:00.30 httpd ve

Re: Found it !!! Why is my apache parent process growing...

2006-01-03 Thread Perrin Harkins
On Tue, 2006-01-03 at 16:46 +0100, Len Kranendonk wrote: > I found it !!! > > Issueing an "apachectl restart" (or kill -HUP) make the apache parent > process size grow ! This was a well-known issue with mod_perl 1.x built using DSO. I never use graceful restart because of this. I thought 2.x g

Re: Found it !!! Why is my apache parent process growing...

2006-01-03 Thread Philip M. Gollucci
Perrin Harkins wrote: On Tue, 2006-01-03 at 16:46 +0100, Len Kranendonk wrote: I found it !!! Issueing an "apachectl restart" (or kill -HUP) make the apache parent process size grow ! This was a well-known issue with mod_perl 1.x built using DSO. I never use graceful restart because of this

APR

2006-01-03 Thread Paul Harrison
Apache2 namespace are wrappers of the APR namespace.  Where can I find information about APR namespace, that will allow me to invoke the same methods that Apache2 namespace allows ?     Example:    use Apache2::RequestRec ();  # set supported by the handler HTTP methods  $allowed =

Re: APR

2006-01-03 Thread Philip M. Gollucci
Paul Harrison wrote: Apache2 namespace are wrappers of the APR namespace. Where can I find information about APR namespace, that will allow me to invoke the Not always true: in the case of Apache2::(Cookie,Upload,Request) it is. In general, the APR:: namespace is Perl Glue for the liba

Re: Found it !!! Why is my apache parent process growing...

2006-01-03 Thread Tyler MacDonald
> >>Issueing an "apachectl restart" (or kill -HUP) make the apache parent > >>process size grow ! > >This was a well-known issue with mod_perl 1.x built using DSO. I never > >use graceful restart because of this. I thought 2.x got rid of this > >issue though. You could try making a static build

Re: Found it !!! Why is my apache parent process growing...

2006-01-03 Thread Philip M. Gollucci
Tyler MacDonald wrote: > Interesting... I just chatted with Brian Somers (resident freeBSD > guru) and he told me that he was getting the same problem under a > normal perl, but when he recompiled his perl to use FreeBSD's malloc > (rather than perl's own), the problem went away; he could restar

Re: Found it !!! Why is my apache parent process growing...

2006-01-03 Thread David Wheeler
On Jan 3, 2006, at 10:29 AM, Philip M. Gollucci wrote: -Dusemymalloc=y is the default for lang/perl5.8 Also, the previous example had this same setting. I'll try a manual compile with it off at some point. FWIW, I found that turning off Perl's malloc() prevented segfaults in mod_perl 1 on S

Re: Found it !!! Why is my apache parent process growing...

2006-01-03 Thread Philip M. Gollucci
I'll try a manual compile with it off at some point. ./Configure -sde \ -Uinstallusrbinperl \ -Dcc=cc \ -Doptimize="-g3 -O0" \ -Duseshrplib \ -Dusethreads=n \ => -Dusemymalloc=n \ -Duse64bitint \ -Dccflags=-pipe \ -Ud_dosuid \ -Ui_gdbm \ -Ui_malloc \ -Ui_iconv \ -

required files not present

2006-01-03 Thread joshua sahala
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello, I have a rather frustrating issue in trying to build an rpm from the mod_perl source. Two dependencies aren't being 'installed', and two aren't found because their "package"-name is diffferent: error: Failed dependencies: perl(Apache2

[mp2] can't locate loadable object during make test

2006-01-03 Thread Baltimore Improv Group
1. Problem Description: Received the following error during "make test". I have already installed the latest Bundle::Apache and verified that the ServerUtil package exists in one of the directories in @INC and is globally-readable and executable. waiting 120 seconds for server to start: ..[Fri D

Hitting head against wall: can't get perl to execute file

2006-01-03 Thread Pete Alvin
I'm trying to set up modperl on Windows XP. Instead of executing the file, I get this returned to my browser: #!/usr/bin/perl5.8.0 print "Content-type: text/html\n\n"; print "Hello World!\n"; 1; Here is how I load perl: LoadFile "C:/Program Files/Perl/bin/perl58.dll" LoadModule perl_module

Why is my apache parent process growing...

2006-01-03 Thread Len Kranendonk
Hello all,   I'm running Apache/2.0.54, mod_perl/2.0.1, Perl/v5.8.7 on FreeBSD 6.0.   Right after starting apache (with preloading the needed perl modules) the httpd root process is about 40MB. After several days it has grown to over 100MB.   I'm using Apache2::SizeLimit to kill of httpd

[Announce] Release of XML::XPathScript 0.16

2006-01-03 Thread Yanick Champoux
On December 29, 2005 04:07 am, Tom Schindl wrote: > I want to inform you that last night I released the sources for > Apache2::TomKit on CPAN. Now, that's what I call a great way to start the year! I've quickly thrown together an (rather alpha) TomKit processor for XPathScript. The processor

Re: Hitting head against wall: can't get perl to execute file

2006-01-03 Thread Philip M. Gollucci
Pete Alvin wrote: I'm trying to set up modperl on Windows XP. Instead of executing the file, I get this returned to my browser: #!/usr/bin/perl5.8.0 print "Content-type: text/html\n\n"; print "Hello World!\n"; 1; Here is how I load perl: LoadFile "C:/Program Files/Perl/bin/perl58.dll" Loa

Re: Hitting head against wall: can't get perl to execute file

2006-01-03 Thread Randy Kobes
On Fri, 30 Dec 2005, Pete Alvin wrote: I'm trying to set up modperl on Windows XP. Instead of executing the file, I get this returned to my browser: #!/usr/bin/perl5.8.0 print "Content-type: text/html\n\n"; print "Hello World!\n"; 1; Here is how I load perl: LoadFile "C:/Program Files/Per

[mp2] make error (alpha platform) - fails on link

2006-01-03 Thread Fox, Michael
1. Problem Description: make fails at last step - link flags seem to be wrong: ld -shared -expect_unresolved "*" -O4 -msym -std -s -L/usr/local/lib mod_perl.lo modperl_interp.lo modperl_tipool.lo modperl_log.lo modperl_config.lo modperl_cmd.lo modperl_options.lo modperl_callback.lo modperl