3

On www.tongguitar.co.kr you can see in the Net tab in Firebug (Firefox):

GET www.tongguitar.co.kr, Status: Aborted
GET www.tongguitar.co.kr, Status: Aborted
[...]
GET www.tongguitar.co.kr, Status: Aborted
GET www.tongguitar.co.kr, Status: 200 OK

It does not happen always, but only sometimes and I don't know why. I use PHP and MySQL and Apache. Is it a server-side problem, a DNS problem? Is there an error in the PHP source code?

iblue
  • 29,609
  • 19
  • 89
  • 128
  • I think this happens when the resource is retrieved from cache, ie if a image already exists in your cache, the request will be aborted. So, if you clear your cache and try to reload the page - the above messages should disappear. – Cyclonecode Jun 20 '12 at 07:31
  • http://stackoverflow.com/questions/2766879/http-script-request-aborted-status may be a known issue by firebug. – 蒋艾伦 Apr 28 '14 at 02:55
  • You can also abort AJAX requests to prevent getting multiple responses for the same requests: http://stackoverflow.com/questions/4551175/how-to-cancel-abort-jquery-ajax-request – Derik Nel May 28 '14 at 06:32

1 Answers1

0

Sometimes this will happen if you have simple things like CSS rollovers (your roll over an image, the request is sent, but you move one before the response is returned) or if your page's JavaScripting requests a resource but doesn't wait for a response to return. Often, the latter is related to a JS analytics call. It's also been known to happen when you hit to "Stop" button.

Either way, it's not an error. It's just part of how the browser uses HTTP.

AJSeidl
  • 57
  • 6