Hi thanks for preceeding answer
I had missed this doc.
I have a problem with Apache::ServerUtil though :
when using $s->dir_config('some') i have this message (and apache segfaults)
:
"Attempt to free unreferenced scalar at .. line 17"
i have installed modperl through ppd, so have not the t/report procedure
i am under win2k ppd from theoryx5, ASperl build 631
for now the only lines in httpd.conf concerning modperl are
perlsetvar statpath path
perlrequire startup.pl
then,
in startup.pl :
use Apache2;
use Apache::ServerUtil();
use Apache::Const();
use Mymodule();
------
in Mymodule.pm
use Apache::ServerUtil;
my $s=Apache->server;
[and the incriminated line 17: ] my $base=$s->dir_config('StatPath');
pascal