Re: problem with CGIHTTPServer

2008-03-28 Thread 7stud
On Mar 28, 10:12 am, "Gabriel Genellina" <[EMAIL PROTECTED]> wrote: > En Fri, 28 Mar 2008 12:38:45 -0300, 7stud <[EMAIL PROTECTED]>   > escribió: > > > After I start the server script, load the html page in my browser, and > > click on the link, I get the desired output in my browser, but the > > s

Re: problem with CGIHTTPServer

2008-03-28 Thread Gabriel Genellina
En Fri, 28 Mar 2008 12:38:45 -0300, 7stud <[EMAIL PROTECTED]> escribió: > After I start the server script, load the html page in my browser, and > click on the link, I get the desired output in my browser, but the > server script outputs the following in my terminal: > > localhost - - [28/Mar/20

problem with CGIHTTPServer

2008-03-28 Thread 7stud
1) I have this simple cgi server: import CGIHTTPServer import BaseHTTPServer class MyRequestHandler(CGIHTTPServer.CGIHTTPRequestHandler): cgi_directories = ['/my_cgi_scripts'] server = BaseHTTPServer.HTTPServer( ('', 8111), MyRequestHandler ) server.serve_forever() 2) I