Hi,
I've discovered a bug about "tracking" module parameter.
If is activated don't send username to GA for tracking joomla members.
This depends by a wrong position of "SetVar" statement.
As described on GA Api webpage, this statement MUST be placed AFTER the command:
| Code: |
pageTracker._initData();
|
therefore, I've modified
mod_analytics.php file moving the following two lines:
| Code: |
$output .= "pageTracker._initData();\n";
$output .= "pageTracker._trackPageview();\n";
|
immediately after line 37:
| Code: |
$output .= "var pageTracker = _gat._getTracker(\"" . $ucode . "\");\n";
|
Now it works fine!
I hope this helps others...
Best Regards.