CGI(shell脚本)未使用echo命令写入文件

时间:2018-10-17 11:41:10

标签: html shell cgi embedded-linux

我在使用CGI写入文件时遇到问题。

我制作了一个简单的HTML公式来按一个按钮,然后在.txt文件中写一个短语,但这是行不通的。

服务器是Apache2。

该脚本在终端中执行时可以正常工作。

ps。 CGI的最后一行有效,更新了HTML页面URL。

文件index.html

<html>
<title>BeagleBone</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<body>

<div class="w3-container w3-green">
  <h1>BeagleBone GPIO Control</h1> 
  <p>Acesso remoto a GPIO's em rede local</p> 
</div>

<div class="w3-row-padding">
  <div class="w3-third">
    <h2>GPIO x</h2>
    <p>Led blue</p>
    <form method="POST" action="/cgi-bin/led.cgi">
  <input type="submit" name="led" value="ON">
  <input type="submit" name="led" value="OFF">
</form>
  </div>

</body>
</html>

led.gci文件

#!/bin/bash

LED_FILE="/home/gpcosta/Desktop/data.txt"

read CONTENT

if [ "$CONTENT" == "led=ON" ]; then
    echo "Apertou botao ON" >> $LED_FILE
elif [ "$CONTENT" == "led=OFF" ]; then
    echo "Apertou botao OFF" >> $LED_FILE
fi

echo "Content-type: text/html"
echo ""
echo '<html>'
echo '<meta http-equiv="refresh" CONTENT="0;url=http://192.168.15.20/index.html">'
echo '</html>'

下面的cgi权限

enter image description here

1 个答案:

答案 0 :(得分:1)

这是因为Web服务器对该目录没有权限。

要解决此问题,请在您的cgi服务器上运行以下脚本:

echo “content-type: text/html”
echo “”
echo “<html>
        <head>
                <meta charset='utf-8'/>
                <title>What permission?</title>
        </head>
        <body>
                <p>Run this on your server terminal:</p>
                <pre>chown $(whoami) ${PWD}
chmod 755 ${PWD}</pre>
  </body>
</html>”

然后只需复制您的Web浏览器将显示的脚本并将其粘贴到CGI Server终端上,请记住要以特权用户身份运行它。