2005年11月07日 星期一 09:32
各位好: 我正在用Python写CGI程序,出错信息只在apache的error日志中输出,而且信息十分的简单。 我的问题: 1. 我如何才能得到更加丰富的调试信息? 2. 有没有高效的调试方法 先谢谢各位大牛了! **************************************** 刘宇波 Michael Lau 中国平安保险(集团)股份有限公司 信息管理中心 系统运营部 TEL:+86-755-82262888-3335 ADDRESS:广东深圳八卦三路平安大厦 518029 **************************************** ******************************************************************************************************************************************** The information in this email is confidential and may be legally privileged. If you have received this email in error or are not the intended recipient, please immediately notify the sender and delete this message from your computer. Any use, distribution, or copying of this email other than by the intended recipient is strictly prohibited. All messages sent to and from us may be monitored to ensure compliance with internal policies and to protect our business. Emails are not secure and cannot be guaranteed to be error free as they can be intercepted, amended, lost or destroyed, or contain viruses. Anyone who communicates with us by email is taken to accept these risks. 收发邮件者请注意: 本邮件含保密信息,若误收本邮件,请务必通知发送人并直接删去,不得使用、传播或复制本邮件。 进出邮件均受到本公司合规监控。邮件可能发生被截留、被修改、丢失、被破坏或包含计算机病毒等不安全情况。 ********************************************************************************************************************************************
2005年11月07日 星期一 10:10
Py 的 web 开发并不仅仅有 CGI 一种方式! http://wiki.woodpecker.org.cn/moin/PyWebAppFrameworks 建议先使用一种快速开发平台来实现,然后象 MoinMoin 一样转换为CGI 方式来与Apache 结合! 推荐:Karrigell http://wiki.woodpecker.org.cn/moin/KarrigellQuickIn 因为一切都非常简单,实用,调试尤其简单!! 在 05-11-7,刘宇波<liuyubo001 at paic.com.cn> 写道: > > 各位好: > 我正在用Python写CGI程序,出错信息只在apache的error日志中输出,而且信息十分的简单。 > 我的问题: > 1. 我如何才能得到更加丰富的调试信息? > 2. 有没有高效的调试方法 > 先谢谢各位大牛了! > > **************************************** > 刘宇波 Michael Lau > 中国平安保险(集团)股份有限公司 > 信息管理中心 系统运营部 > TEL:+86-755-82262888-3335 > ADDRESS:广东深圳八卦三路平安大厦 518029 > **************************************** > > > > ******************************************************************************************************************************************** > The information in this email is confidential and may be legally privileged. If you have received this email in error or are not the intended recipient, please immediately notify the sender and delete this message from your computer. Any use, distribution, or copying of this email other than by the intended recipient is strictly prohibited. All messages sent to and from us may be monitored to ensure compliance with internal policies and to protect our business. > Emails are not secure and cannot be guaranteed to be error free as they can be intercepted, amended, lost or destroyed, or contain viruses. Anyone who communicates with us by email is taken to accept these risks. > > 收发邮件者请注意: > 本邮件含保密信息,若误收本邮件,请务必通知发送人并直接删去,不得使用、传播或复制本邮件。 > 进出邮件均受到本公司合规监控。邮件可能发生被截留、被修改、丢失、被破坏或包含计算机病毒等不安全情况。 > ******************************************************************************************************************************************** > > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > -- # Time is unimportant, only life important! ## 面朝开源,我心自由!
2005年11月07日 星期一 10:11
以前我用mod_python的psp及publisher时,采用写日志的方式,调试非常方便,但在 CGI模式下,无论如何也无法自己写日志,始终不知道原因! 其实如果用apache,我建议用mod_python的psp或publisher,而不要用cgi :) ----- Original Message ----- From: "刘宇波" <liuyubo001 at PAIC.com.cn> To: <python-chinese at lists.python.cn> Sent: Monday, November 07, 2005 9:32 AM Subject: [python-chinese] 转发: 如何调试CGI程序 各位好: 我正在用Python写CGI程序,出错信息只在apache的error日志中输出,而且信息十分的简单。 我的问题: 1. 我如何才能得到更加丰富的调试信息? 2. 有没有高效的调试方法 先谢谢各位大牛了! **************************************** 刘宇波 Michael Lau 中国平安保险(集团)股份有限公司 信息管理中心 系统运营部 TEL:+86-755-82262888-3335 ADDRESS:广东深圳八卦三路平安大厦 518029 **************************************** ******************************************************************************************************************************************** The information in this email is confidential and may be legally privileged. If you have received this email in error or are not the intended recipient, please immediately notify the sender and delete this message from your computer. Any use, distribution, or copying of this email other than by the intended recipient is strictly prohibited. All messages sent to and from us may be monitored to ensure compliance with internal policies and to protect our business. Emails are not secure and cannot be guaranteed to be error free as they can be intercepted, amended, lost or destroyed, or contain viruses. Anyone who communicates with us by email is taken to accept these risks. 收发邮件者请注意: 本邮件含保密信息,若误收本邮件,请务必通知发送人并直接删去,不得使用、传播或复制本邮件。 进出邮件均受到本公司合规监控。邮件可能发生被截留、被修改、丢失、被破坏或包含计算机病毒等不安全情况。 ******************************************************************************************************************************************** _______________________________________________ python-chinese list python-chinese at lists.python.cn http://python.cn/mailman/listinfo/python-chinese
2005年11月07日 星期一 10:14
在 05-11-7,刘宇波<liuyubo001 at paic.com.cn> 写道: > 1. 我如何才能得到更加丰富的调试信息? > 2. 有没有高效的调试方法 你可以使用一些cgi库 可以以命令行的方式来运行这些cgi, 提交的参数就是作为命令行参数 另外print也是很有效的,只是要注意先返回HTTP头后再print你的调试信息 不然就是50x错误了 -- I'm the one, powered by nEO
Zeuux © 2025
京ICP备05028076号