0
我正在使用php腳本來調用後端python腳本。php shell_exec沒有權限
<?php
error_reporting(-1);
$output = shell_exec("sh run.sh 2>&1");
echo "<pre>$output</pre>";
?>
run.sh腳本可以是:
#!/bin/bash
wget http://markets.usatoday.com/custom/usatoday-com/html-mktscreener.asp
python hw7-9.py index.html
echo "done";
輸出是
run.sh: wget: not found
run.sh: python: not found
done
如果我從殼正常運行它,它完美的作品。 ,試圖修復沒有發現我做「這wget的」,並將完整路徑
/afs/cad/sw.common/bin/wget -O index.html http://markets.usatoday.com/custom/usatoday-com/html-mktscreener.asp
我得到許可被拒絕
檢查您的Web服務器是否具有對該文件夾的寫入權限。 – zneak
也定義了輸出文件的完整路徑... –