> 1) OK -> Bareword "OK" not allowed while "strict subs" in use > well, that's easy to fix - I must be missing a 'use' [which one??] > I assume OK is 1 - ie TRUE
"OK" is a constant for the HTTP return code 200. Add:
use Apache::Constants ':common';
to the top of your prog. and it should work.
> 2) error log: Subroutine handler redefined at xxx line 1
Are you using Apache::StatINC?
--Ade.
