Re: APR::Socket SSL

2008-04-03 Thread Philippe M. Chiasson
Mike Cardwell wrote: Hi, I'm writing a PerlProcessConnectionHandler. It starts: sub handler { my $c = shift; my $sock = $c->client_socket; $sock is an instance of APR::Socket. The problem is that the connection is using SSL and I need to be able to read/write the unencrypted socket

Re: ModPerl::MM or ExtUtils::MakeMaker or what?

2008-04-03 Thread Philippe M. Chiasson
Geoffrey Young wrote: Torsten Foertsch wrote: Hi, I am a bit confused about what MakeMaker is best to use with mp2 modules. There is the good old ExtUtils::MakeMaker that is mentioned in http://perl.apache.org/docs/general/testing/testing.html. How I got there I don't remember but I have us

Re: share objects

2008-04-03 Thread Felipe de Jesús Molina Bravo
2008/4/3, Perrin Harkins <[EMAIL PROTECTED]>: > > On Thu, Apr 3, 2008 at 1:33 PM, Felipe de Jesús Molina Bravo > <[EMAIL PROTECTED]> wrote: > > > It depends on what you mean by share. You can create a simple perl > > > object in startup.pl and access it from all processes later, but if > > > you c

Re: share objects

2008-04-03 Thread Perrin Harkins
On Thu, Apr 3, 2008 at 1:33 PM, Felipe de Jesús Molina Bravo <[EMAIL PROTECTED]> wrote: > > It depends on what you mean by share. You can create a simple perl > > object in startup.pl and access it from all processes later, but if > > you change it in one process, the change will not be seen in th

Re: share objects

2008-04-03 Thread Felipe de Jesús Molina Bravo
2008/4/3, Perrin Harkins <[EMAIL PROTECTED]>: > > On Thu, Apr 3, 2008 at 11:32 AM, Felipe de Jesús Molina Bravo > <[EMAIL PROTECTED]> wrote: > > > I know I can share data between processes, but what I also shared > objects? > > > It depends on what you mean by share. You can create a simple perl >

Re: share objects

2008-04-03 Thread Felipe de Jesús Molina Bravo
2008/4/3, Jeff Pang <[EMAIL PROTECTED]>: > > On Thu, Apr 3, 2008 at 11:32 PM, Felipe de Jesús Molina Bravo > <[EMAIL PROTECTED]> wrote: > > hi > > > > I have installed static mp2 with apache 2.0.63 (forker). I am using > perl > > bind (Sleepycat::DBXML) from dbxml; then I create an object (refere

Re: share objects

2008-04-03 Thread Perrin Harkins
On Thu, Apr 3, 2008 at 11:32 AM, Felipe de Jesús Molina Bravo <[EMAIL PROTECTED]> wrote: > I know I can share data between processes, but what I also shared objects? It depends on what you mean by share. You can create a simple perl object in startup.pl and access it from all processes later, but

Re: ModPerl::MM or ExtUtils::MakeMaker or what?

2008-04-03 Thread Geoffrey Young
Torsten Foertsch wrote: Hi, I am a bit confused about what MakeMaker is best to use with mp2 modules. There is the good old ExtUtils::MakeMaker that is mentioned in http://perl.apache.org/docs/general/testing/testing.html. How I got there I don't remember but I have used in all my modules M

Re: share objects

2008-04-03 Thread Jeff Pang
On Thu, Apr 3, 2008 at 11:32 PM, Felipe de Jesús Molina Bravo <[EMAIL PROTECTED]> wrote: > hi > > I have installed static mp2 with apache 2.0.63 (forker). I am using perl > bind (Sleepycat::DBXML) from dbxml; then I create an object (reference to > Sleepycat::DBXML) in startup.pl because i want t

share objects

2008-04-03 Thread Felipe de Jesús Molina Bravo
hi I have installed static mp2 with apache 2.0.63 (forker). I am using perl bind (Sleepycat::DBXML) from dbxml; then I create an object (reference to Sleepycat::DBXML) in startup.pl because i want to share it. After some test (stress it) for my application I saw some error in error.log; the prob

Re: [RELEASE CANDIDATE] mod_perl-2.0.4 RC1

2008-04-03 Thread Randy Kobes
On Thu, 3 Apr 2008, Issac Goldstand wrote: Randy Kobes wrote: On Tue, 1 Apr 2008, Philippe M. Chiasson wrote: The mod_perl 2.0.4 release candidate 1 "Works with Perl 5.10" is ready. It can be downloaded here: - linux: perl-5.8.7, Apache/2.0.55 preform - all tests pass - Win32: perl-5.10.0 (

Re: [RELEASE CANDIDATE] mod_perl-2.0.4 RC1

2008-04-03 Thread Joe Orton
On Wed, Apr 02, 2008 at 03:15:19PM +0100, Joe Orton wrote: > On Tue, Apr 01, 2008 at 11:26:43PM -0700, Philippe M. Chiasson wrote: > > The mod_perl 2.0.4 release candidate 1 "Works with Perl 5.10" is ready. It > > can be downloaded here: > > > > http://www.apache.org/~gozer/mp2/mod_perl-2.0.4-rc1.

ModPerl::MM or ExtUtils::MakeMaker or what?

2008-04-03 Thread Torsten Foertsch
Hi, I am a bit confused about what MakeMaker is best to use with mp2 modules. There is the good old ExtUtils::MakeMaker that is mentioned in http://perl.apache.org/docs/general/testing/testing.html. How I got there I don't remember but I have used in all my modules ModPerl::MM. Is that right?

Re: [RELEASE CANDIDATE] mod_perl-2.0.4 RC1

2008-04-03 Thread Jie Gao
> uname -a SunOS XXX 5.10 Generic_127111-10 sun4u sparc SUNW,Sun-Fire-V240 > /usr/local/bin/perl -V Summary of my perl5 (revision 5 version 10 subversion 0) configuration: Platform: osname=solaris, osvers=2.10, archname=sun4-solaris uname='sunos XXX 5.10 generic_127111-10 sun4u sparc su

Re: Reload/Graceful Restart Apache

2008-04-03 Thread Sean Davis
On Tue, Apr 1, 2008 at 5:59 PM, xyon <[EMAIL PROTECTED]> wrote: > When you mean by hand, you mean something like: > > `/usr/sbin/httpd -k $action` > > Where $action could be "stop" and then "start"? I don't think this is > possible, I get permission denied on the socket: > > (13)Permission deni

Re: Reload/Graceful Restart Apache

2008-04-03 Thread Sean Davis
On Tue, Apr 1, 2008 at 5:48 PM, xyon <[EMAIL PROTECTED]> wrote: > Hello all, > > I've got a modperl app that changes some apache configs (via text > files), but need to tell Apache to re-read its configuration files for > the changes to take effect. What might be the best way of going about > s

Re: [RELEASE CANDIDATE] mod_perl-1.31 RC4

2008-04-03 Thread Issac Goldstand
Randy Kobes wrote: On Wed, 2 Apr 2008, Issac Goldstand wrote: Philippe M. Chiasson wrote: The mod_perl 1.31 release candidate 4 "Works with Perl 5.10" is ready. It can be downloaded here: [ ... ] win32 vc6 FAIL Sorry folks, still segfaulting. Backtrace below: I also get this crash on s

Re: [RELEASE CANDIDATE] mod_perl-2.0.4 RC1

2008-04-03 Thread Issac Goldstand
Randy Kobes wrote: On Tue, 1 Apr 2008, Philippe M. Chiasson wrote: The mod_perl 2.0.4 release candidate 1 "Works with Perl 5.10" is ready. It can be downloaded here: http://www.apache.org/~gozer/mp2/mod_perl-2.0.4-rc1.tar.gz MD5: 1f0a941e8b5f26b6102126ae67ddbb43 SHA1: 8b2ceede3c783b9b2cc