Re: cgi error
Available news archives: comp.lang.tcl - comp.lang.python - comp.security.firewalls - sci.crypt - comp.lang.php - comp.lang.javascript
Google
 
Web news.hping.org


comp.lang.python archive

Re: cgi error

From: v0id <oranen@jubii.dk>
Date: Fri Mar 31 2006 - 17:15:53 CEST

I'm not sure, but in your CGI script, where you have
import cgi
or
import cgi
import cgitb; cgitb.enable()
there sometimes come error if place any other modules over it.
I don't now if it is that, 'cus i don't have seen more of your code.
so if your code is:
importFTPHost
import cgi
import cgitb; cgitb.enable()
#Some code here
# and here
.. then prove this:
import cgi
import cgitb; cgitb.enable()
import FTPHost
#Some code here
# and here
Received on Sun Apr 30 21:47:12 2006