On Fri, 13 Jun 2003 11:48:01 -0400, "David Collantes" <[EMAIL PROTECTED]> wrote:
> That was a typo, it should have said, "now that I have TMDA working..." Oh. > Yes, "Premature end of script headers: tmda.cgi" Gah. None too helpful. > I know, Greg. But since it was not running from the browser I wanted to > troubleshoot. When I run the script from the shell, I get what I posted: <snipped> > Template.Template.Dict["Script"] = os.environ["SCRIPT_NAME"] <snipped> > Since I can not read it from a browser, I thought this would shed some > light. Any tips? Nope. This just indicates that you ran it from the shell and the variables it was expecting from the webserver were not present. To force it to run from the shell (the login page, at least) you have to fake two of those. Try: $ SCRIPT_NAME="" QUERY_STRING="" ./tmda.cgi Hopefully that will give you more debugging information. Gre7g. _____________________________________________ tmda-users mailing list ([EMAIL PROTECTED]) http://tmda.net/lists/listinfo/tmda-users
