我有一些我想执行的 python 脚本和以下配置:安装了 Ubuntu 10.04、Apache2、Python 2.6、mod_python 和 mod_wsgi。
我已按照以下网站上的说明进行操作:
http://bytes.com/topic/python/answers/474462-apache-python-ubuntu
http://apache.active-venture.com/cgi-configure.html
http://modpython.org/live/current/doc-html/inst-testing.html
http://code.google.com/p/modwsgi/wiki/QuickInstallationGuide
http://wiki.apache.org/httpd/DistrosDefaultLayout
sites-available 中的默认文件:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AddHandler mod_python .py
AddHandler cgi-script .cgi py
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
我收到 500 内部服务器错误。我还将文件的权限更改为 755
py 文件只是打印一些应该出现在页面上的文本。我应该怎么办?谢谢
[编辑]:更新,它与下面显示的 py 文件 错误日志中的错误有关。
Traceback (most recent call last):
File "/usr/lib/cgi-bin/amissa2.py", line 80, in <module>
zoom_factor = int(parms.getfirst('zoom')) * int(parms.getfirst('zsize'))
TypeError: int() argument must be a string or a number, not 'NoneType'
从 None 转换为 int 似乎是一个错误,在这里:
zoom_factor = int(parms.getfirst('zoom')) * int(parms.getfirst('zsize'))
关于如何进行这种转换的任何提示?