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);

Re: Apache::SubProcess failures

2001-02-10 Thread Steve Reppucci
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? On Sat, 10 Feb 2001, Aaron Kennedy wrote: Hi all, I'm having some issues