Dear all,
I am currently looking for a Vistors Counter for my Postnuke.
Can anyone recommand me one?
Thanks!
Regards,
Jack
Watch
GitHub Core
Show your support for Zikula! Sign up at Github account and watch the Core project!
GitHub Modules
- mesteele101 responded to »ERR (3): E_USER_ERROR: Smarty error: [in pagesvar:pagesitem2en line XXX]…« 07:01 AM
- mazdev responded to »Pages 2.5.0 and updating - Page not found« 06:41 AM
- ehdwma created topic »Hide "Register new account" and change template to 3 col« 06:27 AM
- mesteele101 responded to »Zikula 1.3.3 - Selecting a category in Pages not working« 01:29 AM
- mdee created topic »How to implement returnpage ?« 01:00 AM
- nestormateo responded to »Fillters in Clip« 24. May
- damon responded to »Can the Updated Version Check be Turned Off (Z 1.3)« 24. May
Zikula Blog
- Anatomy of Open Source Projects on Mar 07
- Continuous Review on Mar 01
- Not Invented Here on Feb 24
- How to Contribute Your Code at Github on Jan 13
- 10 Steps to Coding-Nirvana: Tips for Successful Module Writing on Nov 12
- Submitting Bug Report Tickets That Get Results on Aug 17
- Cozi Tricks #1: Syntax Highlighting on Aug 07
Login
Visitors Counter
-
**unknown user**
- Rank: Senior
- Registered: Mar 16, 2002
- Last visit: Oct 21, 2009
- Posts: 2330
-
**unknown user**
- Rank: Freshman
- Registered: Mar 16, 2002
- Last visit: Mar 04, 2007
- Posts: 70
Hello,
I just installed the Statistics Module as recommended in another thread, and rather than start a new thread I thought I'd continue this one.
Is there a way to have it show the details of the anonymous user? What pages they are viewing/links they are following?
In addition, can it track pages wraped with NukeWrapper? Many of the pages on our site are regular HTML pages wrapped using Nukewrapper, and I would like to incorporate those into the statistics.
Thank you. -
**unknown user**
- Rank: Freshman
- Registered: Mar 16, 2002
- Last visit: Mar 04, 2007
- Posts: 70
ColdRolledSteel
Yes
:)
Would that be yes to 1) keeping track of anonymous visitors, or 2) yes to keeping track of nukewrapper? Or both?
And if yes for 1), how would I do that? As of now, when I set the report to "every" user, I don't get anonymous/guest stats.
thank you -
**unknown user**
- Rank: Expert
- Registered: Mar 16, 2002
- Last visit: Oct 21, 2009
- Posts: 1193
TheProf
Would that be yes to 1) keeping track of anonymous visitors, or 2) yes to keeping track of nukewrapper? Or both?
Sorry, I was in a hurry this morning.
Umm.. both. Easiest way to check on nukewrapper is to open phpMyAdmin in a second browser, go to the nukewrapped page in the first browser, then go browse the nuke_stats_details table in the second window and look at the last row in the table. You should see the "page.php?..." in the requrl column.
Quote
And if yes for 1), how would I do that? As of now, when I set the report to "every" user, I don't get anonymous/guest stats.
Yeah, forgot about that. Most folks don't want to track anonymous users that closely.
Here's how to hack a solution:
1. copy subreports/userdetail.php to subreports/anonymousdetail.php
2. edit anonymousdetail.php and make these changes:
a. Change all occurances of "830" to "831".
b. Change all occurances of "UserDetails" to "AnonymousDetails".
c. Change all occurances of "statistics_userdetails_form" to "statistics_anonymousdetails_form".
d. Change all occurances of "statistics_userdetails_subreport" to "statistics_anonymousdetails_subreport".
e. Change all occurances of "udu" to "uadu".
f. Change all occurances of "ud" to "uad". (Do after step e!)
g. Change this code:
Code
if ($victim == _STATSUSERALL) {
$whereuname = "$column[uname] != '' and $column[uname] != 'Anonymous' ";
} else {
$whereuname = "$column[uname] = '".pnVarPrepForStore($victim)."' ";
}
to:
Code
$whereuname = "$column[uname] != '' and $column[uname] != 'Anonymous' ";
$victim="Anonymous";
h. Change all occurances of _STATSUSERDETAIL to "Anonymous Details". (Note addition of quotes are required.)
That ought to add another subreport to menu reports. The hack obviously has multi-language and other display issues. But it ought to give you what you are looking for.
Let me know if that works for you. Maybe we'll add it to the next statistics release if it helps you and others want it.
- Moderated by:
- Support
