Re: CGI script running not completely in HTML

2006-08-17 Thread Tim Chase
> In which case you probably need to tweak the server timeout > setting. Nothing you can do from Python (except possibly make > your CGI run faster). Or have Python send a better SQL statement that would run faster...a little SQL mojo goes a long way. The OP failed (as far as my thread-dabbling

Re: CGI script running not completely in HTML

2006-08-17 Thread Steve Holden
Yong Wang wrote: > Hi Steve: >The propblem I run into is about one minute. The CGI script is not > completed to run and aborted. > If I run the python script in backend solaris machine, the script needs about > one minute for database > access. > Thanks, > > Yong > In which case yo

Re: CGI script running not completely in HTML

2006-08-17 Thread Steve Holden
Yong Wang wrote: > Hi, All: > I have written a python CGI script to run in html web page. When I access > to > the html page, it only runs part of the script, then abort because the late > part of > the script is involved in database access, it is slow. I wonder whether there > is > a way t

Re: CGI script running not completely in HTML

2006-08-17 Thread Tim
Yong Wang wrote: > Hi, All: > I have written a python CGI script to run in html web page. When I access > to > the html page, it only runs part of the script, then abort because the late > part of > the script is involved in database access, it is slow. I wonder whether there > is > a way t

Re: CGI script running not completely in HTML

2006-08-17 Thread Christoph Haas
On Thursday 17 August 2006 21:50, Yong Wang wrote: > I have written a python CGI script to run in html web page. When I > access to the html page, it only runs part of the script, then abort > because the late part of the script is involved in database access, it > is slow. I wonder whether the

CGI script running not completely in HTML

2006-08-17 Thread Yong Wang
Hi, All: I have written a python CGI script to run in html web page. When I access to the html page, it only runs part of the script, then abort because the late part of the script is involved in database access, it is slow. I wonder whether there is a way to control html running speed so th