Re: cgi script runs under Opera, but not firefox

2005-06-11 Thread nephish
Great Advice, can see that saving me a few headaches thanks -- http://mail.python.org/mailman/listinfo/python-list

Re: cgi script runs under Opera, but not firefox

2005-06-11 Thread Mike Meyer
[EMAIL PROTECTED] writes: > fixed, thanks for all of your help. > i am pouring over python texts and the problem is > html... duh Right. To get HTML that will work in any browser, http://www.anybrowser.org/campaign/ >, you really need to validate your HTML. w3.org provides a public validator

Re: cgi script runs under Opera, but not firefox

2005-06-11 Thread nephish
fixed, thanks for all of your help. i am pouring over python texts and the problem is html... duh looking for a more efficient way to jerk all of the hair outta my head. thanks a whole lot. your awesome -- http://mail.python.org/mailman/listinfo/python-list

Re: cgi script runs under Opera, but not firefox

2005-06-11 Thread nephish
Ok, i made a change in the source. now here is the source from Opera, still cant get firefox to work with me. Customer Data Watkins Crop Consulting 1915 Cherokee Dalhart, Tx 79022333-5943 gandalf Field field one Crop crop one GS growing, yep Weeds many weeds Water lots o water

Re: cgi script runs under Opera, but not firefox

2005-06-11 Thread Brian
Bingo, found it! Notice that you accidentally close the document before displaying any information... [EMAIL PROTECTED] wrote: > > Customer Data > > > Watkins Crop Consulting > > Notice the tag above. There's the problem! Brian -- http://mail.python.org/mailman/listinfo/python-li

Re: cgi script runs under Opera, but not firefox

2005-06-11 Thread nephish
Well, i don't have an app that will automaticlly check a page for errors, unless bluefish will do it, i am not sure. the page it is supposed to print out is a response to a form entry. here is the source from Opera if one of you guys want to look at it. Customer Data Watkins Crop Consulting

Re: cgi script runs under Opera, but not firefox

2005-06-11 Thread Brian
Yes, I agree that it is best to check the HTML source code of the page that is being generated. The server is obviously generating the code, but the difference here is how the two browsers are interpreting the HTML data. Check the source code for the HTML document. I bet the problem resides

Re: cgi script runs under Opera, but not firefox

2005-06-11 Thread James Carroll
Try View Source under Firefox, you should see everything that you're printing from your CGI on the server. The server side CGI will do the same thing no matter what browser is requesting the page. Next, take that source and paste into into some app that will look for problems like tags that aren

cgi script runs under Opera, but not firefox

2005-06-11 Thread nephish
Hey there, i have a python cgi script that prints out html just fine in the Opera browser but doesnt print at all under FireFox. weird, eh? i am getting nothing in the apache logs about any error. perhaps its a firefox issue, but i doubt it. any suggestions. simple script here.. -- http://mail.p