PDA

View Full Version : Members who have visited the forum (Today or last 24 hours).


Pages : 1 2 3 4 [5]

Chadi
08-01-2006, 03:11 AM
Where do I change the time settings that it resets to the new day?

I am unable to find this for some strange reason.

Paul M
08-01-2006, 08:30 AM
vBulletin Options > Who has visited today.

Chadi
08-01-2006, 09:00 AM
I do not see that option

siwhite
08-02-2006, 07:20 AM
Just what I was looking for - many thanks.

Paul M
08-02-2006, 09:15 AM
I do not see that optionThen either you are looking in the wrong place, or it's not installed correctly, if it's working then the latter seems unlikely as I don't think it will work without the settings.

theChronic
08-08-2006, 07:10 AM
hey
could anyone show me how to make it so that this mod is above the Currently Active Users box?

thanks
john

Brandr
08-14-2006, 12:53 AM
Hello,

Thanks for this Mod. I have been tearing out my hair wondering how to turn on this function in my CP...lol

Best wishes,
_Brandr

The-Ensemble
08-14-2006, 09:03 AM
where can i edit this to extract phrases to use on forum home. I looked in the plugin manager found the 2 phrases i want but they wont show up.

Paul M
08-14-2006, 12:56 PM
This is already on the forumhome, I'm not sure what you are asking.

The-Ensemble
08-14-2006, 08:26 PM
I want to use 2 other the phrases in the hack on forumhome and just not use the rest of it. I can't find a template for this hack on forumhome or anywhere else. where do i find it?

Paul M
08-14-2006, 09:23 PM
It uses the template "Display_Visitors".

The-Ensemble
08-14-2006, 11:08 PM
Ok I've found them thanks.
Having a small problem though on The most members online in one day was 5, 08-06-2006. it displays the names underneath and there is other phrases next to it where do i go to remove the names? I can't find a phrase in phrase manager that goes by the name of $whotoday.

I want to edit these 2 phrases where would i find them to edit the wording?
$whodesc
$whotoday

Thanks

Paul M
08-14-2006, 11:49 PM
$whodesc & $whotoday are not phrases, they are variables built by the php code.

Why don't you post exactly what you are trying to do, or change, because "The most members online in one day " is not even part of this mod, it's generated by another (add-on) to this.

The-Ensemble
08-15-2006, 01:01 PM
OH!
Well i want to add these 2 lines of text in the whats going on box.

The most members online in one day was 5, 08-06-2006. | Number of active users today: 5

I'm a good way there I just need to stop the names showing up under the first one and to be able to change what the text says.

Chadi
08-17-2006, 02:54 AM
How do I edit the timezone?

Members who have visited (2) shows this (plugin)


if ($show['wvt'])
{
if ($vbulletin->options['wvt24'])
{
$cutoff = TIMENOW - 86400;
$whodesc = $vbphrase['visited_today_24'];
}
else
{
$whodesc = $vbphrase['visited_today'];
$tnow = date('YmdHis',TIMENOW - intval($vbulletin->options['hourdiff']));
$cutoff = TIMENOW - (substr($tnow,8,2)*3600 + substr($tnow,10,2)*60 + substr($tnow,12,2));
}

$todaysusers = $vbulletin->db->query_read("
SELECT userid, lastactivity, options, username, user.usergroupid, displaygroupid,
groupa.opentag as opentaga, groupa.closetag as closetaga,
groupb.opentag as opentagb, groupb.closetag as closetagb
FROM " . TABLE_PREFIX . "user as user
LEFT JOIN " . TABLE_PREFIX . "usergroup as groupa ON(user.usergroupid = groupa.usergroupid)
LEFT JOIN " . TABLE_PREFIX . "usergroup as groupb ON(user.displaygroupid = groupb.usergroupid)
WHERE lastactivity > " .$cutoff. " ORDER BY username
");

$totaltoday = 0;
unset ($whotoday);
while ($today = $vbulletin->db->fetch_array($todaysusers))
{
$totaltoday += 1;
$today['opentag'] = $today['opentaga'] ;
$today['closetag'] = $today['closetaga'] ;
if ($today['displaygroupid'])
{
$today['opentag'] = $today['opentagb'] ;
$today['closetag'] = $today['closetagb'] ;
}
$today[visible] = 1 ;
if ($today['options'] & $vbulletin->bf_misc_useroptions['invisible'])
{
$today['visible'] = 0 ;
if (($vbulletin->userinfo['permissions']['genericpermissions']
& $vbulletin->bf_ugp_genericpermissions['canseehidden'])
OR $today['userid'] == $vbulletin->userinfo['userid'])
{
$today['visible'] = 2 ;
}
}
if ($today['visible'])
{
$wrdate = vbdate($vbulletin->options['timeformat'], $today['lastactivity']);
$whotoday .= "<a href='member.php?u=$today[userid]' title='$wrdate' >";
if ($today['visible'] == 2)
{
$whotoday .= $today['opentag'].$today['username'].$today['closetag']."</a>*, ";
}
else
{
$whotoday .= $today['opentag'].$today['username'].$today['closetag']."</a>, ";
}
}
}
if ($whotoday)
{
$whotoday = substr($whotoday, 0, strlen($whotoday)-2);
}
else
{
$whotoday = $vbphrase['no_visitors'];
}
$search_text = '<!-- end logged-in users -->';
$vbulletin->templatecache['FORUMHOME'] = str_replace($search_text,
$search_text.fetch_template('Display_Visitors'),$v bulletin->templatecache['FORUMHOME']);
}

I want the timezone to be Central US (GMT -4:00 if I'm not mistaken). Actually, I would rather
have it "last 24 hrs" if possible without clearing out the list of visited members on the 24th hour

The-Ensemble
08-18-2006, 08:59 PM
bump

mlucek
08-24-2006, 06:56 PM
Installed on fresh VB 3.6.0 site and works right outta-the-box !! Took < 1 minute.

Thanks !!

jilly
08-24-2006, 07:29 PM
see screenshot
Weird problem - at a certain point down the who's online and who visited today, the font gets big. I tried uninstalling and reinstalling both hacks, and it doesn't seem to fix it - any idea why my font goes big there, or where to look to check the code?

Paul M
08-24-2006, 09:13 PM
There is no way to determine the problem from a screenshot, it would need access to the actual site. I would guess its a weird username or usergroup markup code. Since it happens in your logged in users list, it cannot be related to this mod as such.

The-Ensemble
08-24-2006, 09:36 PM
So how would i remove the name list from the variable? Is there something in the phpcode i can edit or something?

Paul M
08-24-2006, 10:15 PM
I don't understand the question.

The-Ensemble
08-25-2006, 01:50 AM
Having a small problem though on The most members online in one day was 5, 08-06-2006. it displays the names underneath and there is other variables next to it where do i go to remove the names? Do I edit the php code or something? If so which parts?

I also want to edit these 2 variables (only the wording) where would i find them to edit the wording?
$whodesc
$whotoday

Thanks

upsetter
08-26-2006, 02:00 PM
installed and working fine on 3.5.4 :)

glorify
08-26-2006, 07:25 PM
First off, great hack Paul. I've always loved this, ever since it was released for 3.0.x. This is however, the first time I've ever had a problem with it. It was working fine a few days ago, when I installed it, but now, for whatever reason, it's not showing up on my forumhome. I've tried reinstalling the plugin and have checked my settings for it; everything should be working -- but it's not. I did recently install the Plugin Acc., Template Cache, and Template Comp. hacks... could they have had some kind of adverse effect on it?

Yep, the template cache hack affects it. You need to edit the template cache hack's settings to exclude FORUMHOME (in caps).

It only affects it if you have 'Cache Templates Seperatly' to yes.

The-Ensemble
08-26-2006, 08:07 PM
bump

jilly
08-27-2006, 08:07 PM
There is no way to determine the problem from a screenshot, it would need access to the actual site. I would guess its a weird username or usergroup markup code. Since it happens in your logged in users list, it cannot be related to this mod as such.

Thank you for the push in the right direction! It was a usergroup html markup tag that was missing the closing / in a font tag..

nerofix
08-28-2006, 11:35 PM
Paul did you made a separate hack which counts the number of members and guests? like total visiting users of (x) hours?

Shazz
08-28-2006, 11:37 PM
Paul did you made a separate hack which counts the number of members and guests? like total visiting users of (x) hours?
Just set the cookies to when you want the cut off to be. like i have mine for 24 Hours (includes guests)

Paul M
08-28-2006, 11:42 PM
Paul did you made a separate hack which counts the number of members and guests? like total visiting users of (x) hours?Nope, I have not made any such hack, are you perhaps thinking of the mod that tracks the highest members/guests (https://vborg.vbsupport.ru/showthread.php?t=98885) over time ?

cjwinternet
08-30-2006, 04:27 PM
Installed, works great.

Thank you.

cjwinternet
08-30-2006, 04:29 PM
Hmm, the only option is to 'uninstall modification'. Don't remember even seeing this before?

Sorry, can't click install.

Morning Glory
08-30-2006, 10:30 PM
I have the what's going on box at the top and bottom of the forumhome. I would like the 24 hour visitors to show only at the bottom. I tried everything I could think of and can't take it out of the top so I uninstalled it for now. Is there a way to only have it show on the bottom?

http://www.soberrecovery.com/forums

Thanks :)

Paul M
08-30-2006, 10:42 PM
Hmm, the only option is to 'uninstall modification'. Don't remember even seeing this before?

Sorry, can't click install.That's because you've already done it.

Paul M
08-30-2006, 10:48 PM
I have the what's going on box at the top and bottom of the forumhome. I would like the 24 hour visitors to show only at the bottom. I tried everything I could think of and can't take it out of the top so I uninstalled it for now. Is there a way to only have it show on the bottom?

http://www.soberrecovery.com/forums

Thanks :)
In your modified forumhome template, remove the comment "<!-- end logged-in users -->" from the top WGO section.

Morning Glory
08-30-2006, 11:34 PM
Thank you!!

That Worked.

manutdvn
09-11-2006, 05:14 PM
Hello,

I created a new user group, but they can not see the people who visited today.

Does anybody tell me how to fix this?

Thanks in advance.

Paul M
09-11-2006, 10:33 PM
Hello,

I created a new user group, but they can not see the people who visited today.

Does anybody tell me how to fix this?

Thanks in advance.Well if all else fails, you could always RTFM. :cool:

9. The ability to allow only certain usergroups to view the list is an ACP option (vBulletin Options > Who has visited today).

manutdvn
09-13-2006, 07:30 AM
Well if all else fails, you could always RTFM. :cool:
Thank you. It works great:)

teenhut
09-13-2006, 12:46 PM
Can someone make it for 3.6?

Paul M
09-13-2006, 09:43 PM
Um, someone did (me obviously) - try looking in the 3.6 addons, it's not hard to find. :)

Chadi
09-15-2006, 04:00 AM
Is this feature part of 3.6.1 default now?

Paul M
09-15-2006, 07:06 AM
Not that I am aware of.

Chadi
09-17-2006, 01:17 AM
I'm sure this has been asked, but 50+ pages is much to scan through :)

Right now, my settings is set to clear the list of visited members every 24hrs. How do I have it update the list (without resetting) the members who visited the last 24hrs in general (and not by the individuallly logged in members' timezone, which now resets at their midnight timing).

Paul M
09-17-2006, 09:35 AM
Huh ?

Do you mean this ?

10. The switch between Visited Today and Rolling 24 Hours is an ACP option

GrabAssGirl
09-17-2006, 11:03 AM
How do you make it so it shows the members/visitors in the last 48 hours instead of 24 hours?

I have seen this on a VB software message board, but I can't find the hack here. Maybe it's within this one that I need to change something? (I have looked throughout this whole thread and can't find anything - maybe I missed it)

TIA

Paul M
09-17-2006, 01:56 PM
There is no option to do that, you would need to modify the code and phrases.

rolandogomez
09-17-2006, 11:12 PM
Great Mod. Have it running. I checked off everything to make it appear on separate page. Problem is, while I see it on the forum home just find, I see no links to the separate page or know the URL? I've done everything step by step, selected the right options. Please advise. Thanks again for a great mod!, rg sends! http://www.glamour1.com/forums/

Paul M
09-18-2006, 12:01 AM
I can't help you with the seperate page mod - it was written by EvilHawk, not me.

rolandogomez
09-18-2006, 12:08 AM
Got it fixed, forgot to switch vistor's names displayed to no, which then creates the link to the extra page, thanks, rg.

ConKien
10-05-2006, 03:15 AM
I tried to install but got this error!


A conflict was detected in the bitfields. You cannot continue with the installation of this product until this has been fixed. The conflicts found were:

* Bitfield Collision: can_view_ratestats = can_see_whorated_others



Did anyone has the same problem?

Paul M
10-05-2006, 05:28 AM
This doesn't have any bitfields, so that's being caused by something else.

ConKien
10-06-2006, 05:37 AM
Opps, Im sorry Paul. I was trying to install the version 3.6 and got that errors.

Had two windows open so I posted in the worng one.

jessej
10-26-2006, 06:11 AM
Great easy install. btw- the first hack I have installed in vb. Install clicked :)

will be doing 3.6 in week or two. thanks much Paul.:up:

notorious
11-01-2006, 12:52 PM
installed this on my 3.6.2 and so far its works great thx paul

Paul M
11-01-2006, 06:01 PM
installed this on my 3.6.2 and so far its works great thx paulThis is the 3.5 version. There is a seperate one for 3.6. :)

Shazz
11-01-2006, 08:27 PM
installed this on my 3.6.2 and so far its works great thx paul
https://vborg.vbsupport.ru/showthread.php?t=122422

Phoenix song
11-18-2006, 01:03 PM
I have installed the mod, and it is absolutely the easiest mod to implement that I've ever run across! Very nice! Thank you!

I've clicked on the "installed" button.

:) Barbie
www.roomofrequirements.com/forum

JohnBee
11-27-2006, 08:50 AM
I'd love to see an option to add a maximum cutoff so that with larger forums 350+ visitors per day the container does not overwhelm the layout.

Perhaps something like this would help:

john, anfy, grifin, alex, lisa ...(more)

Paul M
11-27-2006, 08:58 AM
Use the Collapse Display option.

JohnBee
11-27-2006, 10:41 AM
Use the Collapse Display option.
The colapse display is a useful feature as well but it runs on an individual basis and does not offer to control the situation overall.

The idea of a variable cutoff function is appealing because we could dial in when to consider enough is impressive but the user can see if he or she wishes how many people really have visited while the total number always remains in view.

I attached a screenshot of how this could work and look under the circumstances.

Paul M
11-27-2006, 11:49 AM
An interesting idea, but would require quite a few changes and additions, so not likely this year.

One other thing to note - if I were to ever do this, then it would only be in the current version (i.e. 3.6), I would not port it back to older versions like this one.

JohnBee
11-27-2006, 12:32 PM
An interesting idea, but would require quite a few changes and additions, so not likely this year.

One other thing to note - if I were to ever do this, then it would only be in the current version (i.e. 3.6), I would not port it back to older versions like this one.

Looking forward to it! http://www.canons3is.com/forum/images/lustrous/smilies/thumbsup.gif

The popup could be css driven, the remainder is the cutoff code, would you have any problems if I tried my hand at it?

shaynehammy
01-18-2007, 05:07 AM
Please help!!!!

If you view www.thechiefbaboon.com you will see the CMPS page. If you click forums you notice....

Welcome to the [ARG:3 UNDEFINED] forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions, articles and access our other FREE features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload your own photos and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact support.

displayed twice!!!!! Once with the correct heading and one with [ARG:3 UNDEFINED] displayed.

What trickery is this?? Have i befallen an evil and twisted curse to suffer the pains of VBulletin hell for eternity??

For the sake of humanity and the love of ketchup, please help me!

Paul M
01-18-2007, 07:28 PM
Erm, wrong thread - The message is from the "Welcome Headers" mod.

CoorsLightGuy
03-05-2007, 05:37 PM
Just installed Version: 4.21 onto v3.5.3 of vBulletin with no problems. Works great.

kellyandmike
03-15-2007, 12:41 PM
I LOVE this MOD!!! Thanks!

hackgirl
03-15-2007, 04:13 PM
Great mod and easy to install
clicks install

Lord Zedd
05-01-2007, 01:38 PM
I'm having some trouble. When I install this, it works succesfull. There appears to be only 1 problem. Below at the mainpage of my forum, it shows up twice. When I go to the plugin and product manager I see the product 2 times with a different location.

cache_templates [Edit] [Delete]
Members who have visited (2) forumhome_start

When I deactivate one of the two, both don't show up anylonger on the forum mainpage.
How can I solve this?

Paul M
05-01-2007, 08:11 PM
Those are the plugins, there is supposed to be two of them. :)

If it appears twice then you have an issue with your Forumhome template - did you have an old version of this installed in the past ?


(Please Mark as Installed).

bmn
06-06-2007, 10:03 AM
I have been using this mod for 1 years and i had problem last day after i disabled it and re-enabled it so that after 23:59 the counter doesnt reset, it shows that 550 users visited in 00:01 although there must be only 40-50 users. what can be problem?

i am using 3.6.7 PL 1 version and i disabled it because of the slow of forum after i upgraded to 3.6.7 pl1. vbulletin customer support said that the main reason of slow is that mod but i saw that nothing changed after i disabled it. so i enabled it and have been this problem. what can i do?

Ncturnal
06-06-2007, 11:31 AM
It sounds like you have it set to a rolling 24 hour window which will always go 24 hours back from the current time, not reset at midnight.

Paul M
06-06-2007, 12:21 PM
i am using 3.6.7 PL 1 version and i disabled it because of the slow of forum after i upgraded to 3.6.7 pl1. vbulletin customer support said that the main reason of slow is that mod I am very disappointed with them if they told you that - since they should know better.

Please read this thread ;

https://vborg.vbsupport.ru/showthread.php?t=147694

As for the other, sounds to me like Ncturnal is right with his post above.

Tearstone
06-11-2007, 02:18 AM
Great mod, I've been using it for years on one of our forums and just added it to the others.

Chance4Today
09-29-2007, 11:39 AM
I will apologize right away for being so new and really slow. I have a few vbulletins but I purchased my last one so I could try to do things by myself which BTW is very slow. I am glad that my forum is slow also right now so that is all good.

My question is I just downloaded the zip file for the last 24 hour members list that I really want to install, however I have opened the file and I really don't see any instructions or at least not for someone of my computer skills which is neal. I did finally get the sticky's and the regular threads border figured out so that might tell you my tech experience if any is lacking to say the least.

How do I install this thing? Are the instuctions on the download that I am missing? It started off by uploading it into something in vbulletin but I am not even able to locate that> Sorry

Mikecp421
09-29-2007, 07:09 PM
use plugin system to install it, go to ACP > Plugins & Products > ADD/Import Product > click browse, go to file which should be *.xml then upload, that should be all you need to do

Chance4Today
09-29-2007, 11:02 PM
Thank YOU! Do you think that I can handle doing the THANK YOU BUTTON?

OMG that was easy! I didn't have to do any coding or nothing? WOW I am impressed! :D

chink
10-03-2007, 10:12 PM
I have just installed this and it hasnt show up for me at all? anywhere?

Chance4Today
11-07-2007, 05:35 AM
For some reason when I log go to one of my sites and see it, it shows how many are there. When I log into the site it shows I am the only one that has been there the past 24 hours. This was working up until today. Now on my other site it is working but not here. Hummm any suggestions there?

Paul M
11-09-2007, 12:37 PM
Check your timezone.

Welshy2008
07-30-2008, 01:38 PM
Hi Paul,

I tried uploading it throught ACP plugins and got the following message....

" XML Error: not well-formed (invalid token) at Line 1 "

What is this please?

NetRover
07-30-2008, 02:43 PM
Hi Paul,

I tried uploading it throught ACP plugins and got the following message....


" XML Error: not well-formed (invalid token) at Line 1 "

What is this please?

I believe this is added as a product not a plugin, but I am now on the newer supported version.

Welshy2008
07-30-2008, 05:10 PM
I am using 3.6.8 and I was trying to follow someones suggestion of:

ACP -> Plugins & Products -> Download / Upload Plugins -> Import Plugin Definitions XML File -> Browse.

But I got the message in my post above. What does this mean Please?

Welshy2008
07-31-2008, 08:46 PM
Anyone, Please?

Welshy2008
08-01-2008, 10:08 PM
No-one? :erm:

zonaenlinea
04-07-2010, 07:34 PM
The translation in Spanish have it thanks paul