You are viewing a plain text version of this content. The canonical link for it is here.
Posted to apache-bugdb@apache.org by ma...@hotprize.com on 1999/12/18 21:50:01 UTC

Re: mod_perl/5221: server doesn't start up, problem seems related to PerlRequire

The following reply was made to PR mod_perl/5221; it has been noted by GNATS.

From: marcus@hotprize.com
To: ask@apache.org
Cc: apbugs@apache.org
Subject: Re: mod_perl/5221: server doesn't start up, problem seems related
 to PerlRequire
Date: Sat, 18 Dec 1999 15:43:05 -0500 (EST)

 Additional info:
 
 I installed a new linux box with RedHat 6.1 Apache 1.3.9 mod_perl 1.21,
 perl 5.00503 and I have still the same problem.
 
 But I noticed another thing. I PerlRequire a script called
 startup.pl and in there I 'use' other modules. If the
 first use statement is:
 
 use DBI ();
 
 then the httpd core dumps and the backtrace looks like:
 
 #0  0x4031e3df in boot_DBI () from
 /usr/lib/perl5/site_perl/5.005/i386-linux/auto/DBI/DBI.so
 #1  0x403e9306 in Perl_pp_entersub () from
 /usr/lib/apache/modules/libperl.so
 #2  0x4041317d in Perl_runops_standard () from
 /usr/lib/apache/modules/libperl.so
 .
 .
 .
 
 so now it seems boot_DBI () is the problem,
 but if I remove the use DBI () I get again
 boot_Socket () on top of the stack !!
 
 Hope that is some useful information !