I can't get PHP to execute:
<?
$test = ./some_perl_file.pl;
echo ("<pre>$test</pre>");
?>
But it will execute:
<?
$test = ls -al;
echo ("<pre>$test</pre>");
?>
The perl file is chmod'd to 755. I've tried exec() system().
In fact I can't really do execute any command line app.
unzip
tar
grep
I'm lost please help
SP