I can't seem to find any help on this but under the Net tab in Firebug, one of my sites is showing red highlighted items. Unfortunately the site is protected right now so I can't post the link.

Can anyone explain what this means?
|
I can't seem to find any help on this but under the Net tab in Firebug, one of my sites is showing red highlighted items. Unfortunately the site is protected right now so I can't post the link.
Can anyone explain what this means? |
||||
|
|
Ordinarily it indicates a 404 error or some other error, but here you have a 200 status. Use the plus button to expand and look at the response headers. What do they say? Edit: I checked the Firebug source. It definitely means their was a response header in the 400 or 500 range. Why do you have a 200 OK header, also? I couldn't tell you. I can say that it's based on more than just the response headers looking at the logic in FB. However, I'm not that familiar with it (first time that I've looked at firebug's source). If you're very curious about the red AND the 200 OK, check out what you have under the plus button. If that doesn't answer your question (do you have a page but maybe it's a 404 page?), fire up a packet sniffer to see in full detail what happens after the initial error header. |
|||||||||
|
|
There is some error (usually 404 - the resouce cannot be found), however, your browser might be picking them up from somewhere else, like the cache on your proxy? [edit] Turns out this is probably a bug |
||||
|
|
|
This also happens when your request is stopped. It is a common issue with Firefox when you want to send an Ajax request on ESC key press. To avoid this problem, you can add a small delay:
|
|||
|
|
|
I had this same issue today. The response came back 200 (ok), but not the data. The same request worked in IE after displaying a security pop up (site is accessing information which is not under its control), so I guess it could be cross-domain scripting related. |
|||
|
|
|
I just had this happen (red text and empty response in the Firebug Net tab, but status of 200 OK). The HTTP call in question, for me, was an AJAX call. Turns out my current page was MYSITE.com and my XMLHttpRequest was going to www.MYSITE.com (note the "www.") . When I included the "www." on my page's URL, the text was black, the response was not empty, and more importantly, the page worked correctly. |
|||
|
|
|
|
|||||
|