gpt4 book ai didi

python - 在 IIS 5.1 上设置 Python

转载 作者:行者123 更新时间:2023-12-01 06:19:59 26 4
gpt4 key购买 nike

我有这个测试 python 文件

import os

print 'Content-type: text/html'
print

print '<HTML><HEAD><TITLE>Python Sample CGI</TITLE></HEAD>'
print '<BODY>'
print "<H1>This is A Sample Python CGI Script</H1>"
print '<br>'
if os.environ.has_key('REMOTE_HOST'):
print "<p>You have accessed this site from IP: "+os.environ["REMOTE_HOST"]+"</p>"
else:
print os.environ['COMPUTERNAME']

print '</BODY></html>'

我在 IIS 5.1 上创建了一个具有执行脚本权限的应用程序,并创建了到 .py 的映射,如下所示:

C:\Python30\python.exe -u "%" "%"

但是当我尝试执行脚本时,出现以下错误:

CGI Error
The specified CGI application misbehaved by not returning a complete set of HTTP headers. The headers it did return are:

C:\Python30\python.exe: can't find '__main__.py' in ''

有什么想法吗?

最佳答案

C:\Python30\python.exe -u "%" "%"

关闭,但应该是“%s”。我使用:

"C:\Python30\python.exe" -u "%s" 

(第二个 %s 用于命令行



查询,这在本世纪永远不会发生。)

关于python - 在 IIS 5.1 上设置 Python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/730105/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com