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

本文共 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

你可能感兴趣的文章
[LeetCode] Text Justification
查看>>
webdriver API study
查看>>
QoS令牌桶工作原理
查看>>
android工程gen目录中R.java包名是怎么确定
查看>>
【Machine Learning in Action --4】朴素贝叶斯过滤网站的恶意留言
查看>>
Java基础之类Class使用
查看>>
Ubuntu+Eclipse+ADT+Genymotion+VirtualBox开发环境搭建
查看>>
Android 学习之 开源项目PullToRefresh的使用
查看>>
Matplot中文乱码完美解决方式
查看>>
stm32学习笔记----双串口同时打开时的printf()问题
查看>>
Java代码简化神器-Lombok
查看>>
How do I create a List in Scala?
查看>>
lintcode:移动零
查看>>
tomcat的webappclassloader中一个奇怪的异常信息
查看>>
Java语言与C++语言的差异总结
查看>>
Semaphore实现Andoird版源代码剖析
查看>>
使用gSoap规避和改动ONVIF标准类型结构的解析
查看>>
架构设计之策略模式
查看>>
hdu 5400 Arithmetic Sequence(模拟)
查看>>
求职(2015南京站获得百度、美的集团、趋势科技、华为offer)
查看>>