douxidang9092 2018-12-25 14:49
浏览 333
已采纳

PHP - shell_exec似乎有时间限制

I'm running a python script while running a php script online. Because of debugging I made one php script:

<?php
echo shell_exec("python ../reader.py");

If run it (on linux) with php test.php it works and outputs some data. But if I try to access the output on the web, it will give an empty string back.

reader.py takes 8 seconds (so no time limit should be reached).
reader.py:

#!/usr/bin/env python
import sys
import Adafruit_DHT

sensor = Adafruit_DHT.DHT11;
pin = 4;

humiture, temperature = Adafruit_DHT.read_retry(sensor, pin)

if humiture is not None and temperature is not None:
    print("{\"temperature\": " + str(temperature) + ", \"humiture\":"  + str(humiture) + "}")
else:
    print("fail")

Some other commands like ls will work always.

I think there is a problem with the duration but how can I pass this issue?

Solution: Solved my problem giving permissions:

sudo chmod g+s /var/www  
sudo chmod 775 /var/www  
sudo chown -R www-data:www-data /var/www
  • 写回答

1条回答 默认 最新

  • doupi7619 2018-12-26 12:19
    关注

    Chances are that the user your Web server runs as, and whose permissions the script inherits when it is run from a web page, is not allowed to access the hardware, and returns an empty temperature and humidity - or nothing at all.

    Another possibility is that the PHP script executes somewhere else than you think, and finds no reader.py script to launch.

    Try using "ls ../reader.py" to see whether the script is accessible, and run

    "python ../reader.py 2>&1"
    

    to also collect any errors from the python spawning. By the way, is the python executable reachable at all? Have you tried an empty reader2.py that only prints "Hello world"?

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥30 matlab解优化问题代码
  • ¥15 写论文,需要数据支撑
  • ¥15 identifier of an instance of 类 was altered from xx to xx错误
  • ¥100 反编译微信小游戏求指导
  • ¥15 docker模式webrtc-streamer 无法播放公网rtsp
  • ¥15 学不会递归,理解不了汉诺塔参数变化
  • ¥15 基于图神经网络的COVID-19药物筛选研究
  • ¥30 软件自定义无线电该怎样使用
  • ¥15 R语言mediation包做中介分析,直接效应和间接效应都很小,为什么?
  • ¥15 Jenkins+k8s部署slave节点offline