Python应用程序向服务器发送获取链接,获得200 OK响应,但服务器脚本不执行

时间:2013-10-08 13:08:37

标签: php python mysql python-2.7

我正在尝试创建一个将数据插入SQL数据库的python应用程序。 为了实现这一点,我已经让python应用程序在GET请求中发送参数,并编写了一个php脚本,该脚本应该获取它们并发出SQL请求

Python脚本是(缩短的):

import httplib
import time

dd = time.time().__str__()[:-3]
d = time.time().__str__()[:-3]

link = str('?id_machine=1,type_erreur=ping,description_erreur=test,date_detection=' + dd + ',date=' + d)
print link

conn = httplib.HTTPConnection('localhost')

conn.request('GET','/test/erreur.php' + link)
res = conn.getresponse()
print res.status
print res.reason

执行时打印:

drakasan@debian:~$ python Ingesup/Web/AgentS.py 
?id_machine=1,type_erreur=ping,description_erreur=test,date_detection=1381245779,date=1381245779
200
OK

这是php脚本:

<?php
    $page ='Ajoutsalle';
    require_once ('connect.php');

    $id_machine=htmlspecialchars(trim($_GET['id_machine']));
    $type_machine=htmlspecialchars(trim($_GET['type_machine']));
    $description_erreur=htmlspecialchars(trim($_GET['description_erreur']));
    $date_detection=htmlspecialchars(trim($_GET['date_detection']));
    $date=htmlspecialchars(trim($_GET['date']));

    if($nom_machine && $id_salle && $ip && $systeme)
    {
        $query = $connect->query("SELECT * FROM erreur WHERE id='".$id."'");
        $rows=$query->rowCount();
        if($rows==1)
        {
            echo" <div id='error'>Ip existe deja </div>";
        } else {
            $req = $connect->prepare('INSERT INTO     erreur(id_machine,type_erreur,description_erreur,date_detection,date) VALUES(:id_machine,:type_erreur,:description_erreur,:date_detection,:date)');
            $req->execute(array(
                'id_machine'         => $id_machine,
                'type_machine'       => $type_machine,
                'description_erreur' => $description_erreur,
                'date_detection'     => $date_detection,
                'date'               => $date,
            ));
        }

    } else echo "vous devez renseigner tous les champs";
?>
<html>
    <form method='GET' action='#'>
    </form>
</html>

“幸福”数据库如下:

erreur (TABLE)
    -id (PRIMARY, AUTO INDENT, INT)
    -id_machine (INT, FOREIGN KEY)
    -type_erreur (VARCHAR[50])
    -description_erreur (VARCHAR[200])
    -date_detection (TIMESTAMP)
    -date (TIMESTAMP)

我正在使用Xampp将我的服务器和数据库放在localhost / test中。所以看起来脚本确实收到了GET请求,但是没有执行。

问题是,我仍然在python学习,并在php中完成初学者,所以我不知道在代码中搜索的位置。

最终目标是:

agent.py --GET--> erreur.php --SQL--> bliss.erreur

由于会有很多代理,因此从Python脚本发送SQL请求不是解决方案。

任何人都可以验证Python脚本是否有效,并且/或者让我知道代码中哪里出错了?

wget with -O flag:

drakasan@debian:~$ wget -O - http://localhost/test/erreur.php?id_machine=1,type_erreur=ping,description_erreur=test,date_detection=1381241491,date=1381241491
--2013-10-08 16:19:31--  http://localhost/test/erreur.php?id_machine=1,type_erreur=ping,description_erreur=test,date_detection=1381241491,date=1381241491
Resolving localhost (localhost)... ::1, 127.0.0.1
Connecting to localhost (localhost)|::1|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 826 [text/html]
Saving to: `STDOUT'

 0% [                                                                                                             ] 0           --.-K/s              <br />
<b>Notice</b>:  Undefined index: type_machine in <b>/opt/lampp/htdocs/test/erreur.php</b> on line <b>6</b><br />
<br />
<b>Notice</b>:  Undefined index: description_erreur in <b>/opt/lampp/htdocs/test/erreur.php</b> on line <b>7</b><br />
<br />
<b>Notice</b>:  Undefined index: date_detection in <b>/opt/lampp/htdocs/test/erreur.php</b> on line <b>8</b><br />
<br />
<b>Notice</b>:  Undefined index: date in <b>/opt/lampp/htdocs/test/erreur.php</b> on line <b>9</b><br />
<br />
<b>Notice</b>:  Undefined index: id in <b>/opt/lampp/htdocs/test/erreur.php</b> on line <b>11</b><br />
<b>Notice</b>:  Undefined variable: nom_machine in <b>/opt/lampp/htdocs/test/erreur.php</b> on line <b>13</b><br />
vous devez renseigner tous les champs
<html>
    <form method='GET' action='#'>
    </form>
</html>
100%[============================================================================================================>] 826         --.-K/s   in 0s      

2013-10-08 16:19:31 (69.1 MB/s) - written to stdout [826/826]

2 个答案:

答案 0 :(得分:1)

除了其他内容之外,您没有正确遵循HTTP URL语法。一个例子 说了一切:

http://my.host/some/path?foo=1&bar=2

主要观点是参数除以&,而不是,


其他提示:

  • 阅读HTTP的基础知识。这不是一个复杂的协议,它有很多帮助 如果你知道你需要看哪里。

    (提示:有三个部分:状态行,标题和正文)。

  • 调试时,也要检查响应的正文,而不仅仅是 回应状态。

    在Python中,您可以通过打印response.read()方法的输出来完成此操作。 其他选项使用命令行工具,如wget或curl 开关:

    $ wget -O - 'http://my.host/some/path?foo=1&bar=2'
    ...
    $ curl -v 'http://my.host/some/path?foo=1&bar=2'
    ... 
    $
    
  • 也许更好的选择是使用像Wireshark这样的数据包嗅探器, 在那里你可以看到整个请求和响应。这也是一个很好的习惯 如果你想让你的血液系统进入协议。

    (提示:在Wireshark中,右键单击数据包并选择“关注TCP流”)

  • 正如bruno指出的那样,GET不应该用于存储数据,你应该这样做 使用POST(我认为它在PHP中存储为$_POST)。

    正如名字所示:GET意味着获取,POST意味着发布。

  • 最后但并非最不重要的是,您的PHP代码不太可能生成有效的HTML。 <? ... >部分被打印的任何内容(回声)替换,所以你的 实际输出如下:

    vous devez renseigner tous les champs
    <html>
        <form method='GET' action='#'>
        </form>
    </html>
    

    绝对不是有效的HTML。

答案 1 :(得分:0)

如果PHP中有未定义的变量警告,则需要立即处理。在这种情况下,您有$nom_machine &&,因为$nom_machine未定义,基本上等同于if(FALSE &&。这意味着if内部的代码永远不会运行。

在Python方面,您应该阅读输出而不仅仅是标题。 (例如print res.read())。在发送标头之后,PHP通常会显示错误,这意味着您可能会遇到致命错误或带有200标头的空响应。