I have, in my httpd.conf:

# If the perl module is installed, this will be enabled.

PerlInitHandler Apache::StatINC;

<IfModule mod_perl.c>
  Alias /perl /home/httpd/perl
  <Location /perl>
    SetHandler perl-script
    PerlHandler Apache::Registry
    Options +ExecCGI
  </Location>

        Alias /foo /home/httpd/html/foo
        <Location /foo>
                PerlSetEnv EMBPERL_OBJECT_BASE base.htm
                PerlSetEnv EMBPERL_FILESMATCH "\.htm.?"
                SetHandler perl-script
                PerlHandler HTML::EmbperlObject
                Options +ExecCGI
        </Location>
</IfModule>

In /home/httpd/html/foo I have:

base.htm:

<html>
<head>
<title>TEST</title>
</head>
<body>
[- Execute ('head.htm') -]
[- Execute ('*') -]
</body>
</html>

head.htm:

<h1>Head 1</h1>

and page.htm:

PAGE ONE

Now, under this setup if I have Apache::StatINC compiled,
HTML::EmbperlObject refuses to find any pages no matter what I call
them. If I comment out or delete any references to Apache::StatINC then
HTML::EmbperlObject suddenly works.

Is this a known problem or clash?

DSL

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to