I"m having a bit of trouble with the exec command. Perhaps someone can suggest what I'm doing wrong. I know php has support for mcrypt, but I'm not able to recompile or upgrade my current version, so this is my only option.
When I execute this statment, no output is returned and the statement is not executed. I copied the command right from the command line after successfully executing it there.
Any suggestions?
Thanks,
Andrew
echo exec("mcrypt -u -f /usr/local/www/vhosts/easy411.com/crypt/keyfile.txt -a des /usr/local/www/vhosts/easy411.com/crypt/test.txt",$output);
echo $output;
foreach($output as $outputline){
echo("$outputline<br>");
}