Segmentation Fault (11)

2001-06-23 Thread Douglas C. Heestand

I am getting the following messages in my "back-end" apache install logfile
(the one that handles perl scripts using mod_perl and PerlRun)...

[17:03:49 2001] [notice] child pid 15064 exit signal Segmentation Fault (11)
[17:04:27 2001] [notice] child pid 17127 exit signal Segmentation Fault (11)
[17:04:55 2001] [notice] child pid 15065 exit signal Segmentation Fault (11)
[17:05:06 2001] [notice] child pid 17102 exit signal Segmentation Fault (11)

I am running...

Apache:   1.3.19 (for both front-end and back-end)
mod_perl: 1.25
perl: 5.005_03


The httpd processes can last for about 10 minutes before they all die off
and get respawned.

Any ideas on where I should start looking to debug this problem?

Thanks!




Multiple AddHandler statements

2001-06-18 Thread Douglas C. Heestand

We have a CGI script which dynamically generates a certain page on our site.
We want to include an SSI on that dynamically created page.  Is that
possible?  We have two "AddHandler" statements for files that end in .cgi...


...
AddHandler server-parsed .cgi
...



ServerName www.xyz.com
... 
AddHandler cgi-script .cgi


Unfortunately, the dynamically generated page is not being server-parsed
because the Include virtual statement is showing up in the HTML source (the
same statment on a .shtml file, however, is replaced with the result of the
SSI).

Any help would be greatly appreciated.