econcepts,
I am using the simple google analytics mod for about 3 months. it installed great. I am getting data for all but one very important page:
/index.php?main_page=checkout_success

This page does not get picked up in a content report or as a goal when a sale occurs. So everything works great except the one feature I would really like, conversion tracking.

I have entered it in as a head match goal with this in the input:
/index.php?main_page=checkout_success

I am running zen cart 1.3.8a and also have Fast Easy Checkout mod installed from numinix. Would these two mods conflict? I am also doing AIM CC processing on site with Authorize.net.

Also, the code looks slightly different between what google wants and what displays on my site:
Google Code:

<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-xxxxxxx-1");
pageTracker._trackPageview();
} catch(err) {}</script>

shows on my page:
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
var pageTracker = _gat._getTracker("UA-xxxxxxxx-1");
pageTracker._initData();
pageTracker._trackPageview();
</script>

Any Thoughts on how to resolve this issue?

3Sigma