Hi, i has set up a solaris 9 system which the following components:
apache 2.0.48 modperl 1.99_11 lxml2 2.5.10 lxslt 1.0.32 libapreq2 2.01-dev The instalation was done as described in the readme. Furthermore there is a PerlAccessHandler. Everytime if i am requesting a page which will controlled by this handler this error message: [Wed Nov 12 11:03:26 2003] [notice] child pid 381 exit signal Segmentation fault (11)' occurs in my error.log Has anyone any idea? Thanks Wolfgang package My::TicketHandler; use strict; use warnings; use Apache::Const; use Apache::Cookie; sub handler { my $r = shift; my $s = $r->server; my $ticket = Apache::Cookie->new ( $r, -name => "Test", -value => "Hansi" ); $s->log_error("cookie"); } 1 -- Reporting bugs: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html