python cgi 连接 sqlite3 失败的问题

2015-07-09 09:31:02 +08:00
 weiyu

话不多说,上cgi文件代码

!/usr/bin/env python

import cgi
import sqlite3

reshtml1 = '''Content-Type: text/html\n
<HTML>
<HEAD>
<TITLE>ISTG baby VOTE system</TITLE>
</HEAD>
<BODY>
<P>Your name is <B>%s</B>.
<P>You have voted <B>%s</B>.
</BODY>
</HTML>
'''
reshtml2 = '''Content-Type: text/html\n
<HTML>
<HEAD>
<TITLE>ISTG baby VOTE system</TITLE>
</HEAD>
<BODY>
<P>You are not a member of ISTG group!
<P>If you are, please check your spelling. eg: hqzhu
</BODY>
'''

get entered name and voted sex

form = cgi.FieldStorage()
person = form['person'].value
sex = form['sex'].value

get leagal names from database

conn = sqlite3.connect('/home/hqzhu/istg/web/baby.db')
cur = conn.cursor()
sql = "select name from catalog;"
cur.execute(sql)
names = cur.fetchmany(14)
cur.close()
conn.close()

if (person,) in names:
print reshtml1 % (person, sex)
else:
print reshtml2

下面是httpd的error_log内容
[Wed Jul 08 17:34:24.830482 2015] [cgi:error] [pid 13304] [client 10.230.0.108:58221] AH01215: Traceback (most recent call last):, referer: http://10.180.190.12/baby.htm
[Wed Jul 08 17:34:24.830577 2015] [cgi:error] [pid 13304] [client 10.230.0.108:58221] AH01215: File "/var/www/cgi-bin/baby.py", line 34, in <module>, referer: http://10.180.190.12/baby.htm
[Wed Jul 08 17:34:24.830616 2015] [cgi:error] [pid 13304] [client 10.230.0.108:58221] AH01215: conn = sqlite3.connect('/home/hqzhu/istg/web/baby.db'), referer: http://10.180.190.12/baby.htm
[Wed Jul 08 17:34:24.830683 2015] [cgi:error] [pid 13304] [client 10.230.0.108:58221] AH01215: sqlite3.OperationalError: unable to open database file, referer: http://10.180.190.12/baby.htm
[Wed Jul 08 17:34:24.841601 2015] [cgi:error] [pid 13304] [client 10.230.0.108:58221] End of script output before headers: baby.py, referer: http://10.180.190.12/baby.htm

前两天有个帖子说是用sys.stdout.write()去做什么的,不太懂,求教~

1957 次点击
所在节点    Python
2 条回复
Septembers
2015-07-09 09:48:18 +08:00
这年头没多少人使用/会CGI了
ryd994
2015-07-09 12:11:19 +08:00
为啥不用wsgi?
cgi在性能,安全等各方面都没什么优势

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/204376

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX