[rt-users] No content and no logging

Dan kasper37 at netzero.com
Mon Sep 16 15:51:03 EDT 2002


I actually think I've narrowed it down a bit since my post. I don't think
mod_perl is working correctly.  I put this:

use strict;
my $r = shift;
$r->send_http_header('text/html');
$r->print("It worked!!!\n");

into a test file and ran it and I'm still getting that same blank page and the
same html I spoke of in my original post.  I'm not sure why it wouldn't be
working, this is what I've added:

LoadModule perl_module lib/httpd/mod_perl.so

<Files ~ "\.pl$">
   PerlHandler         Apache::Registry
   PerlSendHeader      On
   SetHandler          perl-script
   Options             +ExecCGI
</Files>

DocumentRoot /opt/rt2/WebRT/html
ServerName helpdesk.cypherus.com
PerlModule Apache::DBI
PerlFreshRestart On
PerlRequire /opt/rt2/bin/webmux.pl
<Location />
  SetHandler perl-script
  PerlHandler RT::Mason
</Location>



More information about the rt-users mailing list