At 01:43 PM 09/28/00 -0700, Doug MacEachern wrote:
>On Thu, 28 Sep 2000, Bill Moseley wrote:
> 
>> Is there a way to make that message go away?
>
>maybe if you can give me a small example that reproduces the message.  it
>works fine for me:

package My::Hello;
use strict;
use Apache::Constants qw(HTTP_NOT_MODIFIED);

sub handler {
    my $r = shift;
    $r->status( HTTP_NOT_MODIFIED );
    $r->exit;
}

PerlFreshRestart On
PerlTaintCheck On
PerlWarn On

    <Location />
        PerlSendHeader off
        SetHandler perl-module
        PerlHandler My::Hello
        Allow from all
    </Location>
1;

GET / http/1.0

HTTP/1.1 304 Not Modified
Date: Thu, 28 Sep 2000 22:18:36 GMT
Server: Apache/1.3.12 (Unix) mod_perl/1.24
Connection: close

[Thu Sep 28 15:18:36 2000] [error]  at /data/_g/lii/My/Hello.pm line 8.


>actually, the patch below might fix it.  lemme know.

Nope.  I just downloaded a fresh 1.24, and 1.3.12 and built with

perl Makefile.PL \
APACHE_SRC=../apache_1.3.12/src \
DO_HTTPD=1 \
USE_APACI=1 \
EVERYTHING=1 \
APACI_ARGS='--enable-module=rewrite --disable-module=include'

BTW --disable-module=include causes:
modules/ssi.........FAILED before any test output arrived

Any way to detect that SSI is disabled and not run the test?




Bill Moseley
mailto:[EMAIL PROTECTED]

Reply via email to