Re: New Windows mod_perl binaries available

2013-04-29 Thread Steve Hay
Do you have an exception-trap at the highest level around your program? I always have the entire program enclosed within a try-catch block (using Try::Tiny; even just an eval {} would be better than nothing), so if any Perl-level exceptions are thrown then they get caught and logged. It won't trap

Re: New Windows mod_perl binaries available

2013-04-29 Thread Steve Hay
64-bit binaries are now uploaded too. On 28 April 2013 20:22, Steve Hay wrote: > Yes, it should be possible to make a 64-bit build as well. I will look > into this in the next week or so. ActivePerl, StrawberryPerl and > ApacheLounge all have 64-bit builds available; I just need to dig out > the

redirecting stderr to database/external script

2013-04-29 Thread Ryan Perry
I'm trying to redirect my errors to another script to log them. I have my access log redirected, but errors still go to httpd-error.log. How can I do this? -- *Ryan Perry* Technology Director RestoreHealth 1289 Deming Way Madison, WI 53717 608.833.7046 ext 700 rpe...@restorehc.com

Re: New Windows mod_perl binaries available

2013-04-29 Thread Michiel Beijen
Hi Issac, On Mon, Apr 29, 2013 at 4:08 PM, Issac Goldstand wrote: > First of all, see if you can get a stacktrace. so how would you recommend I create a stack trace? This has been my whole problem, the process simply restarts and I don't see why. > There's also always spreading print/debug stat

Re: New Windows mod_perl binaries available

2013-04-29 Thread Issac Goldstand
First of all, see if you can get a stacktrace. There's also always spreading print/debug statements around - I'm unfortunately not so up-to-date on the various perl profiling modules around, but they might be helpful. Issac On 29/04/2013 14:16, Michiel Beijen wrote: > Hi Issac, > > Thanks for

libapreq2 + META.yml not compliant with the CPAN meta spec

2013-04-29 Thread Tørmoen Joakim
Hi, I'm currently trying to add libapreq2 to a local pinto mirror, and I am having some problems with that the content of the META.yml files is not compliant with the CPAN meta spec v.1.2 Unable to extract packages from libapreq2-2.13.tar.gz: Failed to upconvert metadata to 1.2. Errors: Missin

Re: New Windows mod_perl binaries available

2013-04-29 Thread Michiel Beijen
Hi Issac, Thanks for your response. On Mon, Apr 29, 2013 at 12:54 PM, Issac Goldstand wrote: > This is a known issue related to the winnt MPM. You're likely seeing > your worker segfault. On linux, there are usually extra processes so if > one segfaults there's another process that can step in

Re: New Windows mod_perl binaries available

2013-04-29 Thread Issac Goldstand
This is a known issue related to the winnt MPM. You're likely seeing your worker segfault. On linux, there are usually extra processes so if one segfaults there's another process that can step in fast enough. But on the winnt MPM, there's one master and exactly one multi-threader worker. So whe

Re: New Windows mod_perl binaries available

2013-04-29 Thread Michiel Beijen
Hi Steve, On Sat, Apr 27, 2013 at 6:27 PM, Steve Hay wrote: > For those who are interested, I've now uploaded binary builds of > mod_perl-2.0.8 and libapreq2-2.13 components compatible with Apache > Lounge 2.2.24 Build 25 February 2013 (win32) and each of: Thanks for providing these binaries.