Actinic is inserting a spurious acatalog/ into the code generated by layout Google Analytics Tracking Code when generating the home page.
This means that the Google Analytics JavaScript file will not be loaded and Analytics won't be recording home page visits.
This only happens on the sites home page (which is one you'd really want tracked).
The problem comes from layout Google Analytics Tracking Code and the line:
Actinic sees src= then "google-analytics.com/ga.js and thinks this is a reference to a local file so it sticks in the acatalog/ on the home page only.
The fix is to replace the ga.js with ga%2Ejs as follows:
In fact it wouldn't hurt to escape the equals sign too and be double-sure.
E.g.
This has been mentioned before but I see it's still in V10.0.2 Beta 2 so it looks overdue for fixing.
This means that the Google Analytics JavaScript file will not be loaded and Analytics won't be recording home page visits.
This only happens on the sites home page (which is one you'd really want tracked).
The problem comes from layout Google Analytics Tracking Code and the line:
Code:
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
The fix is to replace the ga.js with ga%2Ejs as follows:
Code:
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga%2Ejs' type='text/javascript'%3E%3C/script%3E"));
E.g.
Code:
document.write(unescape("%3Cscript src%3D'" + gaJsHost + "google-analytics.com/ga%2Ejs' type='text/javascript'%3E%3C/script%3E"));
Comment