Hi Arnold,
Maybe delete the exit call at the end of you script. Read here why not use exit under mod_perl
Regards, Jens
http://perl.apache.org/docs/1.0/guide/porting.html#Terminating_requests_and_processes__the_exit___and_child_terminate___functions
#! /usr/local/bin/perl -w # File: junk.pl
use strict; print "Content-type: text/plain\n\n"; print "Hello, World!\n"; exit 0;
-- Report problems: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html List etiquette: http://perl.apache.org/maillist/email-etiquette.html