Torsten Foertsch wrote:
On Thursday 17 May 2007 00:13, Tyler Bird wrote:
I am setting up a new server with mod_perl + apache 2.0 + some legacy code
and am sporadically rececing a segmentation fault to my apache logs like
so.
Maybe this helps:
http://perl.apache.org/docs/2.0/devel/debug/c.html
Is your code by chance using more than one Perl handler for the same phase,
for example pushing 2 fixup handlers at request time? If yes, then have a
look here:
http://www.gossamer-threads.com/lists/modperl/dev/93466
Torsten
Hey,
Actually I was using a perl script.
I used try {} catch {} and discovered that in a required module I was
missing a require()
That cleared up the issue.
Why didn't receive a message saying I was missing a require() to my
apache log and instead received a segmentation fault
I don't know why. The script finished executing but the apache child
died with a segmentation fault.
Tyler