Re: does anyone have a fix for this?

2000-08-15 Thread Doug MacEachern

On Wed, 2 Aug 2000, Jamie Krasnoo wrote:

> Hello all,
> 
> I'm new to the list and I'm hoping that someone could help me and explain
> what I'm doing wrong or how to fix this
> 
> 
> I recently compiled mod_perl-1.24 and it can run modules that I program.
> However I get a segmentation fault (11) when I use a :: to describe where
> the module is.

try mod_perl from cvs (see mod_perl_cvs.pod), this might be releated to
the perl_handler_is_method() fix.




Seg fault (11) backtrace (long email) - was RE: does anyone have a fix for this?

2000-08-03 Thread Jamie Krasnoo
 server
should die.

I tried this with both stock RedHat kernel and 2.4.0-test5 kernel, same
results both seg fault and tests normal.

Still learning,

Jamie Krasnoo

I apologize for the lengthy email.


-Original Message-
From: Eric Cholet [mailto:[EMAIL PROTECTED]]
Sent: Thursday, August 03, 2000 3:28 AM
To: Jamie Krasnoo
Cc: Mod_Perl
Subject: Re: does anyone have a fix for this?


> Hello all,
>
> I'm new to the list and I'm hoping that someone could help me and explain
> what I'm doing wrong or how to fix this
>
>
> I recently compiled mod_perl-1.24 and it can run modules that I program.
> However I get a segmentation fault (11) when I use a :: to describe where
> the module is.
>
> Example
>
> This works fine -
>
> 
>   SetHandler perl-script
>   PerlHandler hello
> 
>
>
> This causes the horrible [Wed Aug  2 22:34:30 2000] [notice] child pid
4433
> exit signal Segmentation fault (11)

Please read the SUPPORT file from the mod_perl distribution for information
on how to supply a backtrace so we can investigate the segfault.

Thanks,

--
Eric




Re: does anyone have a fix for this?

2000-08-03 Thread Eric Cholet

> Hello all,
> 
> I'm new to the list and I'm hoping that someone could help me and explain
> what I'm doing wrong or how to fix this
> 
> 
> I recently compiled mod_perl-1.24 and it can run modules that I program.
> However I get a segmentation fault (11) when I use a :: to describe where
> the module is.
> 
> Example
> 
> This works fine -
> 
> 
>   SetHandler perl-script
>   PerlHandler hello
> 
> 
> 
> This causes the horrible [Wed Aug  2 22:34:30 2000] [notice] child pid 4433
> exit signal Segmentation fault (11)

Please read the SUPPORT file from the mod_perl distribution for information
on how to supply a backtrace so we can investigate the segfault.

Thanks,

--
Eric





does anyone have a fix for this?

2000-08-02 Thread Jamie Krasnoo

Hello all,

I'm new to the list and I'm hoping that someone could help me and explain
what I'm doing wrong or how to fix this


I recently compiled mod_perl-1.24 and it can run modules that I program.
However I get a segmentation fault (11) when I use a :: to describe where
the module is.

Example

This works fine -


  SetHandler perl-script
  PerlHandler hello



This causes the horrible [Wed Aug  2 22:34:30 2000] [notice] child pid 4433
exit signal Segmentation fault (11)
to rear its ugly head even though the module was moved to
/home/httpd/perl/app.


  SetHandler perl-script
  PerlHandler app::hello


to help here's a copy of my startup.pl - basic nothing special

#!/usr/bin/perl

BEGIN {
use Apache;
use lib '/home/httpd/perl';
}

1;

The help is much appreciated, I've lost half my hair tearing it out trying
to find the cause of this problem.

Thanks,
Jamie Krasnoo