Re: system()/exec() ?

2001-08-01 Thread Aaron Kennedy
Hi, If I'm interpreting you correctly, you'll find that your scripts are actually executing correctly, you're simply not capturing their output, which, presumably, is what you want. The mod_perl docs mention that you can solve this by recompiling your perl installation to support sfio, but I've

Re: Apache::SubProcess failures

2001-02-11 Thread Aaron Kennedy
On Sat, 10 Feb 2001, Steve Reppucci wrote: Are you certain that your problem is in the output redirection? That message seems to indicate that the problem is in exec'ing /usr/bin/ls. Are you sure that it (ls) exists at that path, rather than just /bin/ls? I feel kind of embarrassed about

Apache::SubProcess failures

2001-02-10 Thread Aaron Kennedy
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);