g_pass
g_pass

Reputation: 711

Firefox loading page twice (or 3 times), shows as Abort 200 in firebug

I am experiencing a strange situation where Firefox is loading a page 2 or 3 times just to show it once. I have looked into obvious things like empty image tags and such, but can't figure it out.

Using firebug, I can see in quick succession, the browser is getting a 200 Aborted and then the 200 OK, before loading the other elements of the page. Looking at my server logs, I only see the 200 OKs, nothing that is like an abort. Does anyone know why this happens? It happens with simple link clicks, no ajax in play when this occurs. This is causing extra server load, and also double activity for operations that are not idempotent.

Upvotes: 3

Views: 1888

Answers (6)

kkk
kkk

Reputation: 1

In my case there was a network issue blocking the https: transfers (SSL session not trusted). Once the credentials were accepted, the transfers changed from ABORTED to Success.

Upvotes: 0

SpliFF
SpliFF

Reputation: 38956

200 Abort is sent when you call the abort() method on XMLHTTPRequest objects. Maybe you should post some related JS code or look for cases where abort() is being called.

Upvotes: 1

Bharath
Bharath

Reputation: 807

The issue is completely related to firebug. Try using Firefox's in-built Web Console with "Net" option enabled.

Upvotes: 0

user956584
user956584

Reputation: 5559

Firebug causes a second HTTP GET request of @fontface font-files

http://code.google.com/p/fbug/issues/detail?id=4649

I had the same issue but that whose Firebuq buq :)

Upvotes: 2

user1156978
user1156978

Reputation: 31

The only thing I have seen close to this is bad .htaccess redirects. If you are using a linux server, check all of the .htaccess files in the folder that the file is in, the folders that you are linking to and also all the parent folders.

Upvotes: 1

Paweł
Paweł

Reputation: 2234

Check that there arent empty src properties in img tags.

Upvotes: -1

Related Questions