后台 - python
羽下佳人
爱好敲代码,敲代码
展开
-
python + Apache: CGI下html get 请求
教程中: CGI程序可以是Python脚本,PERL脚本,SHELL脚本,C或者C++程序等。 所以: 一开始我把html文件放在cgi-bin目录下,一直报错,找不到html文件 日志报错: 文件路径存放位置: 浏览器效果: /htdocs/python/test_get.html <!DOCTYPE html> <ht...原创 2018-10-25 14:55:07 · 764 阅读 · 6 评论 -
python : cookie get/set + cookie 中文乱码问题
set: #!D:\anzhuang\python\python.exe import codecs, sys, cgi, cgitb sys.stdout = codecs.getwriter('utf-8')(sys.stdout.buffer) print ('Content-Type: text/html') print ('Set-Cookie: name="菜鸟教程";...原创 2018-10-29 13:23:16 · 1225 阅读 · 2 评论 -
Python + win10 +Apache CGI 错误500的解决方法
初始报错: 解决方法: ①脚本运行 ,改变.py文件的权限 # 进入项目目录 # 引入os模块、 cd C:\xampp\cgi-bin\pythonEg import os os.chmod("hello.py",755) ②ScriptInterpreterSource Registry是对Windows注册表项HKE...原创 2018-10-24 17:07:23 · 1509 阅读 · 0 评论 -
python CGI 配置编程,浏览器run .py 文件
相关网址: https://blog.csdn.net/u014470581/article/details/52724057 步骤: 1.本地appace配置: C:\xampp\apache\conf\httpd.conf 配置一下目录,使你的目录可以执行CGI 比如你的目录是 /var/www/cgi-bin/ 要使这个目录下可以运行CGI,必须添加上 +ExecCGI...原创 2018-10-24 17:09:00 · 646 阅读 · 0 评论