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 -

<Location /hello>
  SetHandler perl-script
  PerlHandler hello
</Location>


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.

<Location /hello>
  SetHandler perl-script
  PerlHandler app::hello
</Location>

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

Reply via email to