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.
Bookmarks