It was working for me two days agao.
When I go through the normal process I follow to login at the first stage it
pops up with a box that says;
Internet Explorer Script Error
As error has ooccurred in the script on this page.
Line 132
Char 106
Error Unterminated string constant
Code 0
URL http (my website)
I then click Yes when prompted to do so,
The next box pops up and has the same heading
Line 135
Char 1
Error '_gat' is undefined
Code 0
URL http (my website)
again I click Yes
I then come through to my normal screen that is typically waiting for me to
EDIT it, and it says :-
You are viewing a page on a website that you haven't created a connection to.
Do you have any suggestions?
It's not only creating the errors (probably caused by Contribute rewriting
analytics code on publish) but also placed inside a h6-tag and that is not
allowed.
Solution is to remove the code and place the correct google analytics code
inside a javascript file and call the file into the page, something like this:
<script language="javascript" type="text/javascript"
src="path_to_file_with_google_code.js"></script>
Then Contribute will not trouble this code to my knowledge.
<h6 align="right" class="grey14" style="margin-top: 0; margin-bottom:
0;">
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." :
"http://www.");
document.write(unescape("<script src='" + gaJsHost +
"google-analytics.com/ga.js' type='text/javascript'></script>
"));
</script>
<script type="text/javascript">
var pageTracker = _gat._getTracker("UA-3937234-1");
pageTracker._trackPageview();
</script>
</h6>