Account Options

  1. Sign in
The old Google Groups will be going away soon.
Switch to the new Google Groups.
Google Groups Home
« Groups Home
Discussions > Troubleshooting > UrchinTracker - Setting _uff before a single call breaks code?
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  3 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
PandaMelange  
View profile  
 More options Mar 5 2008, 10:27 am
From: PandaMelange
Date: Wed, 5 Mar 2008 07:27:48 -0800 (PST)
Local: Wed, Mar 5 2008 10:27 am
Subject: UrchinTracker - Setting _uff before a single call breaks code?
Hello... Please help!

Trying to change a universal footer for our pages so that we can call
UrchinTracker() above it on specific pages, on an ad-hoc basis (we'd
filter out this first call for the main profile, and want the second
to execute regardless).

But it looks like setting _uff just before the universal call broke
our code... My understanding is that _uff is false by default, so...
what gives?

<script>
_uff="FALSE"; // This was added; all tracking was lost.
_uacct='UA-xxxxx-x';
_udn='profiledomain.com';
urchinTracker();
</script>

Thanks!


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
ShoreTel  
View profile  
 More options Mar 5 2008, 2:11 pm
From: ShoreTel
Date: Wed, 5 Mar 2008 11:11:31 -0800 (PST)
Local: Wed, Mar 5 2008 2:11 pm
Subject: Re: UrchinTracker - Setting _uff before a single call breaks code?
_uff is a "boolean" value, meaning it must be one of 0, 1, true, or
false.

Since you put double-quotes around it, you turned it into a "String"

just use _uff = false; no double quotes.

On Mar 5, 7:27 am, PandaMelange wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
PandaMelange  
View profile  
 More options Mar 5 2008, 5:33 pm
From: PandaMelange
Date: Wed, 5 Mar 2008 14:33:55 -0800 (PST)
Local: Wed, Mar 5 2008 5:33 pm
Subject: Re: UrchinTracker - Setting _uff before a single call breaks code?
Thanks ShoreTel, hoped you'd see this one...

There are a few topics in discussion for calling urchinTracker()
twice / multiple times where recommended solution is _uff = "false";
so for anyone looking, note that it is wrong and should be _uff =
false; or _uff = 0;

We actually ended up fixing it after deciding that it should be
fine... This time an engineer did it and omitted the quotes... We saw
that it was working and realized that was the problem.

Will be more weary of non-explicit typecasting in the future...

On Mar 5, 2:11 pm, ShoreTel wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »