Your python script is not getting executed.
I guess there is something wrong with the server configuration.
#-Original Message-
#From: Philippe C. Martin [mailto:[EMAIL PROTECTED]
#Sent: Tuesday, October 25, 2005 1:27 AM
#To: python-list@python.org
#Subject: python cgi script not unders
It is, thanks.
Philippe
Peter Hansen wrote:
> Philippe C. Martin wrote:
>> The following code outputs the actual HTML text to the browser, not the
>> interpreted text.
>>
>> html_ok = """
>> Content-Type: text/html\n
>> > "http://www.w3.org/TR/html4/loose.dtd";>\n
>
> HTTP header lines must
Many thanks !!
Regards,
Philippe
Mitja Trampus wrote:
> Philippe C. Martin wrote:
>> Hi,
>>
>> The following code outputs the actual HTML text to the browser, not the
>> interpreted text.
>>
>> Any idea ?
>>
>> html_ok = """
>> Content-Type: text/html\n
> >
> > ...
> > """
>
> Avoid t
Philippe C. Martin wrote:
> The following code outputs the actual HTML text to the browser, not the
> interpreted text.
>
> html_ok = """
> Content-Type: text/html\n
> "http://www.w3.org/TR/html4/loose.dtd";>\n
HTTP header lines must end with \r\n, not just with \n. Not sure this
is the soluti
Philippe C. Martin wrote:
> Hi,
>
> The following code outputs the actual HTML text to the browser, not the
> interpreted text.
>
> Any idea ?
>
> html_ok = """
> Content-Type: text/html\n
>
> ...
> """
Avoid the starting newline (before content-type).
Add at least TWO newlines after conten
the title should say "python cgi script html output not understood as html"
Philippe C. Martin wrote:
> Hi,
>
> The following code outputs the actual HTML text to the browser, not the
> interpreted text.
>
> Any idea ?
>
> Regards,
>
> Philippe
> import cgi
> import logging
> import auth #th