我正在玩Raspberry Pi和anm Arduino shield,以便通过Apache / PHP运行脚本。这个脚本简单地闪烁LED。我已经通过shell测试了脚本,并且使用命令
工作正常/root/arduPi/blink_test
我能看到我的LED闪烁。所以我用这个简短的PHP脚本通过Apache PHP做了同样的事情
<?php
if(isset($_GET['cmd'])){
echo '/root/arduPi/'.$_GET['cmd'];
exec('/root/arduPi/'.$_GET['cmd']);
}
?>
但没有任何反应,也没有显示任何错误。
我用
测试了PHP代码<?php
phpinfo();
?>
,没关系。我该如何解决这个问题?