Is there any way to tell if shell_exec is actually doing anything? I have it working fine for simple things like cd and ls but when I tried to do something a little more complicated it doesn't look like it's doing anything.
Here's one such command that's not working
$output = shell_exec('apktool d -f $file_name');
echo "<pre>Output :<br />$output</pre>";
apktool is something to reengineer android applications. The regular shell command I enter is identical to what I am putting into shell_exec but it isn't working.
Additional things to note:
I know php.ini has safe_mode off and it is not listed in disable_functions