Hi all,
I'm having some issues involving directing the output of system() to the
client. I'm trying to use Apache::Subprocess to over-ride
system(). However, whenever I use it, I get the following errors in my
Apache error log:
--- test.pl ---
use strict;
use Apache::SubProcess qw(system);
select STDOUT; $| = 1;
print "Content-type: text/html\n\n";
system ("/usr/bin/ls");
--- error.log ---
[Sat Feb 10 22:54:29 2001] [error] fdopen failed! at
/usr/local/lib/perl5/site_perl/5.6.0/i586-linux/Apache/SubProcess.pm line
36.
[Sat Feb 10 22:54:29 2001] [error] (2)No such file or
directory: Apache::SubProcess exec of /usr/bin/ls failed
I'm using Apache version 1.3.17, mod_perl version 1.25 and
Apache::SubProcess version 0.02. Any help would be greatly appreciated!
Cheers,
Aaron