Version: 1.00, by Mystics
Developer Last Online: Jun 2015
Version: 2.2.x
Rating:
Released: 01-10-2002
Last Update: Never
Installs: 339
No support by the author.
Hack Name: Who was online today Hack Version: 1.0.2 For vB Version:: 2.x Originally Created by: genial @ Skats Board (Contact)
Documentation, Translation, a few changes and posted by: Mystics
Description:
This Hack adds something like the "Currently Active Users:"-Feature of vBulletin.
The difference is, instead of showing the users, who are currently online, it shows all Users, who were online on a day and it also displays "Most users ever online on a day".
Summary of the Features:
Shows "Number of Active Users Today"
Shows "Most users ever online on a day"
Shows last online time for each User while pointing the Mouse Cursor on it's name (=mouseover) in the list
Important: The Hack only works 100% correct, when each member is in the same time zone as the Server!
Files to edit: index.php Templates to edit: forumhome New Templates: forumhome_todayloggedinusers, forumhome_todayloggedinuser
I have attached the Install Instructions in a Text File.
The Instruction is in English and in German.
I will attach a Screenshot in a Reply to this Thread!
Post any Questions into this Thread!
Updates in 1.0.1: Inserted the two new templates into the template precaching (first step)
Updates in 1.0.2: Fixed a little Bug with the "Most users ever online on a day"-Count
(Replace '$maxusers[2] = $todayonline;' with '$maxusers[2] = $numbertodayonline;' in index.php)
Info: You can find an other version of this Hack here. In this other version the usernames of the members, who were already online today, are not shown on the Forum-Mainpage; the names are shown in an extra File (like online.php), onlinetoday.php (Screenshot).
Originally posted by Psychdrone errr Great hack! as I said before!
But now I changed it to where the users lists is located on another page, and All it doseit tell me how many people have been online. but dose not include a list of people? anyhelp thanks!!!!!!!
Check if you have done all necessary template changes and if you have uploaded onlinetoday.php! (You only see the list of usernames on onlinetoday.php in the second version of the Hack!)
Originally posted by Psychdrone the second version??
Look at my first Posting in this Thread.....there are two Versions of the Hack
1. All names of the Users who where online today are listed on the Forum-Home just below the "Curent ActiveUsers"
2. All names of the Users who where online today are listed on a separate Site (onlinetoday.php)
That's what I meant with the "second version"!
And it seems, you have installed the second version...because you don't see the names on the Forum Home !!! So, upload onlinetoday.php and open it....you can see the names there (and first, follow all instructions in "who-was-online-today-with-extra-window.txt" !)
I would like to make a request of anyone who might be able to answer.
I?d like to make the onlinetoday.php file also show invisible users to my mods, but I am unable to do so on my own. Can anyone provide the code that would allow usergroup 7 to see invisible users in onlinetoday.php?
Originally posted by SWFans.net
I?d like to make the onlinetoday.php file also show invisible users to my mods, but I am unable to do so on my own. Can anyone provide the code that would allow usergroup 7 to see invisible users in onlinetoday.php?
this changes will allow supermoderators and moderators to see the invisible user, no matter what there usergroupid is.
search for this line in the hack:
PHP Code:
if ($todayuser['invisible']==1 and $bbuserinfo['usergroupid']!=6) {
and replace it with this line:
PHP Code:
if ($todayuser['invisible']==1 and $bbuserinfo['usergroupid']!=6 and $bbuserinfo['usergroupid']!=5 and !$mod["$bbuserinfo[userid]"]) {