Quote Originally Posted by countrycharm View Post
Eric here is my tpl_main_page if you don't mind take a look at it and see if there is anything wrong with it. Under Google Analytics Configuration this is how it is set up without given you my Analytics Account number.

Analytics Account UA-xxxxxxxx
Target Address customers Affiliation
Use sku/code products_model
Use Older "urchin.js" Tracking Code No
Activate Conversion Tracking No
Google AdWords Conversion Tracking Number XXXXXXXXXX
Google AdWords Language en_US

On google everything is set up right. I just don't get it. I have check and double check the file that uploaded to see if they went into the right place also.
Thanks for your help.
this is what i am seeing from your site darleens art gallery home page.
_uacct = "UA-#######";
urchinTracker();
</script></body></html>

i would like to jump in a take a guess, as i was battling configuration problems too. things to check for activation.

1. the google analytics site will show you code to paste into you page. LOOK close at the account # "UA-#######-1" you will see "-1" added. double check your admin side of zen and enter the account # with the -1 at the end of your account number. (suspect its the number of sites monitoring)

2. on your editing of tpl_main_page.php try adding a return after the pasting to give a blank line before the </body> tag.

tpl_main_page.php

LOOKS LIKE THIS:
<!--bof-Google analytics -->
<?php
require($template->get_template_dir('.php',DIR_WS_TEMPLATE, $current_page_base,'google_analytics') . '/google_analytics.php');
?>

</body>


Results LIKE THIS:
_uacct = "UA-#######-1";
urchinTracker();
</script>
</body></html>

with out the extra line in the tpl_main_page.php after the pasted in insert i was getting a run together output on the pages ie;
_uacct = "UA-#######-1";
urchinTracker();
</script></body></html>

3. Default Page index.php/
4. End you site url .com/

the last two items i changed before i started seeing "Waiting for data.." were the index.php/ and the space in the code of tpl_main_page.php

hope this helps.