UnderMine has asked for the wisdom of the Perl Monks concerning the following question:
I am wondering if any one have experienced or got an explaination of the following.
When using DBI and CGI under mod_perl on Apache the following two lines cause a seg fault when in the startup.pl script
However the following works OK :-use CGI qw(-compile); use DBI;
These are the module/versions :-use DBI; use CGI qw(-compile);
Any help would be welcomeApache 1.3.26 mod_ssl 2.8.9 mod_layout 3.0.3 mod_perl 1.26 root@cgi1:/# perl -MDBI -e 'print "$DBI::VERSION\n"' 1.21 root@cgi1:/# perl -MCGI -e 'print "$CGI::VERSION\n"' 2.752
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: DBI and CGI qw(-compile) order causes seg fault
by nite_man (Deacon) on Apr 08, 2003 at 12:14 UTC | |
by UnderMine (Friar) on Apr 08, 2003 at 12:43 UTC |