Re: Apache is exiting....

2003-03-04 Thread Paolo Campanella
On Mon, 3 Mar 2003 13:36:05 + (GMT) Ged Haywood <[EMAIL PROTECTED]> wrote: > Hi there, > > On Mon, 3 Mar 2003, Paolo Campanella wrote: > > > gdb reports that clean_child_exit is not defined - perhaps you are > > looking at newer sources than mine (1.3.22). > > Is there a reason why you don'

Re: Apache is exiting....

2003-03-04 Thread Paolo Campanella
On Mon, 3 Mar 2003 13:36:05 + (GMT) Ged Haywood <[EMAIL PROTECTED]> wrote: > Hi there, > > On Mon, 3 Mar 2003, Paolo Campanella wrote: > > > gdb reports that clean_child_exit is not defined - perhaps you are > > looking at newer sources than mine (1.3.22). > > Is there a reason why you don'

Re: Apache is exiting....

2003-03-03 Thread Ged Haywood
Hi there, On Mon, 3 Mar 2003, Paolo Campanella wrote: > gdb reports that clean_child_exit is not defined - perhaps you are > looking at newer sources than mine (1.3.22). Is there a reason why you don't want to upgrade to 1.3.27? 73, Ged.

Re: Apache is exiting....

2003-03-03 Thread Paolo Campanella
On Fri, 28 Feb 2003 12:12:48 -0500 Perrin Harkins <[EMAIL PROTECTED]> wrote: > > Exception 415: UnableToReadFont > > (@/usr/X11R6/lib/X11/fonts/ttf/Ritalin.ttf) at /path/to/script line > > 584.[Fri Feb 28 14:31:49 2003] [alert] Child 1216 returned a Fatal > > error... Apache is exiting! > > That'

Re: Apache is exiting....

2003-03-03 Thread Paolo Campanella
On Fri, 28 Feb 2003 12:15:32 -0800 "Kyle Oppenheim" <[EMAIL PROTECTED]> wrote: > It looks like the parent server will exit if one of its children exits > with APEXIT_CHILDFATAL. Unfortunately, if you grep for that in the > Apache source, it comes up more than a few times. A stacktrace would be >

Re: Apache is exiting....

2003-02-28 Thread Kyle Oppenheim
> > [Fri Feb 28 14:31:49 2003] [alert] Child 1216 returned a Fatal error... > > Apache is exiting! > > That's bad. Sounds like an apache bug to me. Can anyone else confirm > if this is intended behavior or not? You might want to check the httpd > lists and newsgroups for info about this. In htt

Re: Apache is exiting....

2003-02-28 Thread Perrin Harkins
Paolo Campanella wrote: I'm sure: [EMAIL PROTECTED] /root]# ps axf [...] 1212 ?S 0:00 httpd-modperl -f /etc/httpd/conf/httpd-modperl.conf 1215 ?S 0:00 \_ httpd-modperl -f /etc/httpd/conf/httpd-modperl.conf 1216 ?S 0:00 \_ httpd-modperl -f /etc/httpd/conf/

Re: Apache is exiting....

2003-02-28 Thread Paolo Campanella
On 27 Feb 2003 11:35:15 -0500 Perrin Harkins <[EMAIL PROTECTED]> wrote: > On Thu, 2003-02-27 at 11:06, Paolo Campanella wrote: > > Just one thing though: when the process dies, it > > really does take the main server process down with it: > > > > [Thu Feb 27 17:55:04 2003] [alert] Child 8592 retu

Re: Apache is exiting....

2003-02-27 Thread Perrin Harkins
On Thu, 2003-02-27 at 11:06, Paolo Campanella wrote: > Just one thing though: when the process dies, it > really does take the main server process down with it: > > [Thu Feb 27 17:55:04 2003] [alert] Child 8592 returned a Fatal error... > Apache is exiting! Are you certain? Have you actually ch

Re: Apache is exiting....

2003-02-27 Thread Paolo Campanella
On 27 Feb 2003 10:33:21 -0500 Perrin Harkins <[EMAIL PROTECTED]> wrote: > On Thu, 2003-02-27 at 08:42, Paolo Campanella wrote: > > Pretend > > for a moment that you have no specific knowledge of the library which > > causes this problem: is there any black box approach to stopping some > > library

Re: Apache is exiting....

2003-02-27 Thread Perrin Harkins
On Thu, 2003-02-27 at 08:42, Paolo Campanella wrote: > Pretend > for a moment that you have no specific knowledge of the library which > causes this problem: is there any black box approach to stopping some > library's complaints from shutting down my web server? No. The library is executing C co

Re: Apache is exiting....

2003-02-27 Thread Paolo Campanella
Hi Chris On Thu, 27 Feb 2003 09:33:07 -0500 "Chris Faust" <[EMAIL PROTECTED]> wrote: > Hey Paolo, > > Did you try to add some die statements to see if it made any difference, > so something like: > > use Image::Magick; > my $image=Image::Magick->new(size=>'75x75'); > $image->Read('null:white')

Re: Apache is exiting....

2003-02-27 Thread Paolo Campanella
Hi Nigel On Thu, 27 Feb 2003 14:16:45 + (GMT) Nigel Hamilton <[EMAIL PROTECTED]> wrote: > HI Paolo, > > Can you use an eval {}; block? No, doesn't work. This is also (AFAIK) how Error.pm works. > Or maybe solve the bug. Is the @ symbol meant to appear in the > font path? Sol

RE: Apache is exiting....

2003-02-27 Thread Chris Faust
Hey Paolo, Did you try to add some die statements to see if it made any difference, so something like: use Image::Magick; my $image=Image::Magick->new(size=>'75x75'); $image->Read('null:white'); die &display_error("Read Error Error: Image: null:white $image \n") if ($image); my @x = $imag

Re: Apache is exiting....

2003-02-27 Thread Nigel Hamilton
HI Paolo, Can you use an eval {}; block? Or maybe solve the bug. Is the @ symbol meant to appear in the font path? NIge > > Hi all > > Here's a stripped-down version of a script I use: > === > use Image::Magick;