Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Website is returning "CSI/tbsd_" and "CSI/_tbnd" errors in browsers

I have a website that is returning some odd warning messages and errors in both Firefox and Chrome.

Firefox returns these errors:

GET http://fonts.googleapis.com/css?family=Varela+Round 200 OK 7c8e43d.js (line 18)
13:27:41.46 CSI/tbsd_
13:27:41.48 CSI/_tbnd

Chrome returns this error:

XMLHttpRequest cannot load http://fonts.googleapis.com/css?family=Varela+Round. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin is therefore not allowed access. 

I'm guessing that this problem is related to Google Fonts API and Access-Control-Allow-Origin How can I fix the errors for this?

like image 240
Manolo Avatar asked Nov 29 '13 10:11

Manolo


2 Answers

The log entries for CSI/tbsd_ and CSI/_tbnd are not errors but time stamps, which are generated by the Google APIs.

Time stamps can be generated in JavaScript using the console.timeStamp() function.

You can also see these time stamp logs on google.com:

enter image description here

Within Firebug they are even displayed as olive lines within the Net panel timeline:

enter image description here

So these log messages are nothing to worry about. They just provide some information for debugging purposes.

Your actual problem related to the error you get in Chrome is caused by a cross-domain request. So the browser is blocking it for security reasons related to the same origin policy. There's a tutorial on "Cross-Origin Resource Sharing" (CORS) at html5rocks.com.

See also related questions on stackoverflow:

  • XMLHttpRequest cannot load, No 'Access-Control-Allow-Origin' header is present on the requested resource
  • "No 'Access-Control-Allow-Origin' header is present on the requested resource"
like image 158
Sebastian Zartner Avatar answered Oct 08 '22 15:10

Sebastian Zartner


I've also spotted this on my site recently, particularly since adding Google DFP (Doubleclick) code to my page.

I found the following description on this site SpanishDict Engineering

csi?tbsd is a console.time call comng from google

That seems to make sense in the context of my web page. I hope it makes similar sense for you?

like image 2
Tony Carbone Avatar answered Oct 08 '22 14:10

Tony Carbone