V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
weiyu
V2EX  ›  Python

python cgi 连接 sqlite3 失败的问题

  •  
  •   weiyu · 2015-07-09 09:31:02 +08:00 · 1942 次点击
    这是一个创建于 3222 天前的主题,其中的信息可能已经有所发展或是发生改变。

    话不多说,上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()去做什么的,不太懂,求教~

    2 条回复
    Septembers
        1
    Septembers  
       2015-07-09 09:48:18 +08:00
    这年头没多少人使用/会CGI了
    ryd994
        2
    ryd994  
       2015-07-09 12:11:19 +08:00 via Android
    为啥不用wsgi?
    cgi在性能,安全等各方面都没什么优势
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   2296 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 25ms · UTC 04:09 · PVG 12:09 · LAX 21:09 · JFK 00:09
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.