Търсене в помощните статии

Избягвайте измамите при поддръжката. Никога няма да ви помолим да се обадите или изпратите SMS на телефонен номер или да споделите лична информация. Моля, докладвайте подозрителна активност на "Докладване за злоупотреба".

Learn More

firefox does not work with my simple http server

  • 1 отговор
  • 1 има този проблем
  • 4 изгледи
  • Последен отговор от cor-el

more options

I'm developing a simple http server. I can generate simple HTTP responses. IE displays the response properly; FF does not.

Here is the response:

       "HTTP/1.1 200 OK\r\n" \

"Host: 127.0.0.1:80\r\n" \ "Date: %s\r\n" \ "Server: SimpleHTTPtutorial v0 %d\r\n" \ "Content-Type: text/html\r\n" \ "Content-Length: 44; charset=ISO-8859-1\r\n" \ "\r\n" \ "blahblah from %d

Does FF require something extra in order to interpret a page? FF responds with a blank page or says the connection was reset.

I'm developing a simple http server. I can generate simple HTTP responses. IE displays the response properly; FF does not. Here is the response: "HTTP/1.1 200 OK\r\n" \ "Host: 127.0.0.1:80\r\n" \ "Date: %s\r\n" \ "Server: SimpleHTTPtutorial v0 %d\r\n" \ "Content-Type: text/html\r\n" \ "Content-Length: 44; charset=ISO-8859-1\r\n" \ "\r\n" \ "<html><body>blahblah from %d</body></html> Does FF require something extra in order to interpret a page? FF responds with a blank page or says the connection was reset.

Всички отговори (1)

more options

Looks that the content didn't get processed before it got send, i.e. convert "\r" to CR and "\n" to LF and substituting the %s and %d.


A good place to ask advice about web development is at the mozillaZine Web Development/Standards Evangelism forum.
The helpers at that forum are more knowledgeable about web development issues.
You need to register at the mozillaZine forum site in order to post at that forum.

See http://forums.mozillazine.org/viewforum.php?f=25