Joseph Ross Lee wrote: > hello! Do you guys know how to setup python 2.2.1 cgi > support on a redhat linux 7.3 box.... any how-to's or > docs will do... thanks!!!!!
Python 2.2.1 package ships with a cgi library or module. When you do rpm -i python2-2.2-16.i386.rpm, a cgi.py module will be one of the modules installed in /usr/lib/python2.2. To use it you put in a line import cgi on your code and you can use the library's functions, classes, methods, and attributes. Python's home page has a bunch of resources on CGI programming: http://www.python.org/topics/web/ -- Benjamin Oris Jr. ImagineAsia Animation Studio http://www.imagineasia.com _ Philippine Linux Users Group. Web site and archives at http://plug.linux.org.ph To leave: send "unsubscribe" in the body to [EMAIL PROTECTED] To subscribe to the Linux Newbies' List: send "subscribe" in the body to [EMAIL PROTECTED]
