Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

firefox does not work with my simple http server

  • 1 reply
  • 1 has this problem
  • 8 views
  • Last reply by 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.

All Replies (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