Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
No immediate issues come to mind.
The fact you use same plugin on 2 different launch properties then makes me think this is just a configuration problem.
So I would start compare the 2 launch properties, see if any evars, events or dependencies this plugin looks for are missing in the one not working.
Also check are the 2 properties similar in terms of both web based or are you trying to do a web based property and a native app one?
Views
Replies
Total Likes
Hi @Pablo_Childe Thank you for your reply. We tested by removing all eVars /props/events from the Analytics rule to rule out any dependency but that didnt help us also.
Views
Replies
Total Likes
Have you tried enabling Debugging mode?
// In Browser Console
// Turn Debugging on
_satellite.setDebug(true);
// Turn Debugging off
_satellite.setDebug(false);
Also, are you getting any JS errors?
If this plugin isn't set up just right, it could be causing a critical JS error that prevents tracking from proceeding.
Views
Replies
Total Likes
Hi @Jennifer_Dungan Thank you for your reply.
yeah we did debugging In and could not see related console errors.
Are the cookie domain periods the same for both the domains assuming two properties are for two domains?
That can also sometimes cause issues with plugin installations.
Cheers,
Abhinav
Would you be willing to share the links to the working and non-working sites (even if done via private messaging) so that we can look at the issue in action?
Hello @ambikaTewari_ATCI ,
Can you try-> 'try'-'catch' block inside s_doPlugins(s) function and check if there is any execution error while executing any plugins inside s_doPlugins function?
For ex,
function s_doPlugins(s) {
try{
s.execDoPlugins++;
_satellite.logger.log("============ s_doPlugins("+s.execDoPlugins+") ====================");
/* Server Variable for every Call */
s.linkTrackVars += ",server";
s.server = document.domain;
s.eVar4=s.getPreviousValue(s.pageName,'gpv_pn','');
s.prop4="D=v4";
/* Visitor Status */
s.eVar21=s.getNewRepeat(365);
s.prop21="D=v21";
/* Visit Number*/
s.eVar23=s.getVisitNum(365);
s.prop23="D=v23";
/* Time Parting */
var timeVar=s.getTimeParting('Etc/GMT-2');
timeVar=timeVar.split('|');
today=timeVar[0]+'|'+timeVar[1]+'|'+timeVar[2];
s.eVar24=today +"|"+timeVar[2]+"|"+timeVar[3]+"|"+timeVar[4]+"|"+((timeVar[4].match(/^s.*/i)!=null)?"Weekend":"Weekday");
s.prop24="D=v24";
s.prop52=timeVar[3];
}
catch(err){
console.log("----------Analytics Error----------");
console.log(err);
}
}
Views
Replies
Total Likes
Hi @everyone Thank you for your inputs. we debugged it and found that there is a variable which is present in plugin which was conflicting with the varaible of HTML.
It is resolved now.
Thank you all.
Yay! Glad you found the problem @ambikaTewari_ATCI
Views
Replies
Total Likes