我想从PHP中的网页执行shell脚本。
我的shell脚本(test.sh with chmod + x right):
#!/bin/bash
ls -la
wget www.google.fr
我的php页面(index.php):
<?php
echo system('./test.sh');
echo exec('./test.sh');
echo shell_exec('./test.sh');
?>
在这种情况下我可以运行脚本但是wget只返回ls
命令工作。如果我直接在命令行(php index.php)中运行脚本一切正常。我做错了什么?