i have a php file from which i need to call a shell script which i am doing as follows:
$out = exec("/root/.mozilla/firefox/score.sh 2>&1");
echo $out;
when i execute this code in opera its giving Permission denied. I have given permission to all directory and the script also.
is the problem because of that .mozilla file?? how to solve?? also tried with shell_exec().. not working