博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Configuration python CGI in XAMPP in win-7
阅读量:6186 次
发布时间:2019-06-21

本文共 674 字,大约阅读时间需要 2 分钟。

1.After install XAMPP,we need add the path of the Mysql

just find the path and add it to your sys-path of windows 

try it from the cmd and chang the password for the root user:

2.try the new password:

 

3.find the httpd.conf in the path:

xampp\apache\conf

add the following lines to the file :

 

AddHandler cgi-script .cgi .pl .asp .py

AddType text/html .shtml .py

Options Indexes FollowSymLinks Includes ExecCGI

 

4.try the code in the cgi-bin path:

hello.py:

#!D:\Python27\python.exeprint "Content-Type: text/html\n"print "hello CGI

Hello Python CGI

"

5.add then open the url name this:

http://localhost/cgi-bin/hello.py

 

 

 

转载于:https://www.cnblogs.com/impact-crusher/p/3325699.html

你可能感兴趣的文章
linux下修改mac地址
查看>>
设计模式---Iterator
查看>>
企业内网于外网的互联
查看>>
PsTools sexec的使用
查看>>
leetCode 349. Intersection of Two Arrays 哈希
查看>>
MySQL体系结构详解
查看>>
Javascript 面向对象编程(一):封装
查看>>
源码构建MySQL服务器
查看>>
centos7 rabbitmq集群安装配置管理
查看>>
配置linux的yum源
查看>>
理解Linux系统负荷
查看>>
我的友情链接
查看>>
Linux中JDK环境配置
查看>>
故障转移之starwind共享存储篇
查看>>
Java编程错误
查看>>
HTTP之2 HTTP优化(HTTP性能优化、安全的HTTP协议)
查看>>
线上服务mcelog负载异常分析处理流程
查看>>
用手机wifi看你电脑里视频听MP3的方法
查看>>
JavaScript实现按键精灵
查看>>
REMOTE HOST IDENTIFICATION HAS CHANGED
查看>>