![]() |
hey paul, here's a question - any chance of ever doing a 'most ever arcade players' to go along with this:
https://vborg.vbsupport.ru/showthread.php?t=101880 ? |
Any reason why the most online seems to stick at 999?
We had over 1,000 online today, but it didn't update the stats... forums.mg-rover.org if you want to check... |
I can't see any reason for it to stop at 999, there is nothing to limit it in the code.
|
Just what I've been looking for... Paul, you da man!
|
I get the same problem where it doesn't register over 999.
http://www.sim-outhouse.com/sohforums/index.php? vBulletin 3.5.3 FlashChat Integration 2.56 Members who are using flashchat 4.12 Members who have posted on the forum 4.12 Members who have visited the forum 4.12 Most Ever Visitors, Users or Chatters 2.03 Users Who Registered Today 1.0 v3 Arcade 1.0.2 FYI: Turned off all my other plug-ins and tested, still won't exceed 999 |
Quote:
Quote:
MGSteve - as you run your own modified version, you may have to manually update it, PM me for details. |
Feel free to incorporate my users reg today if you wish.
|
I updated that
Quote:
|
It works now, dumb me I missed updating that plugin...
Thanks again eXtremeTim, I love your additions to vBulletin! |
Quote:
I'll look at adding it to this when I next have time to update it. :D Quote:
|
oops want to thank 'Paul M' for the additions, was excited I got the routines to work and messed up. I do want to thank eXtremeTim for helping.
|
Is the at phrase translateable?
I am having a hard time finding it in VB cp |
Yes, it's the phrase called "at_2".
|
Found it :)
|
*Installed*
Thank you! |
look at the posts from #44 to #48
|
Quote:
|
i could swear there asked somebody about this 999er bug ... :D
|
<clicks install>
thanks :-) |
Installed Working a-o-k :)
|
What table/field is the most located... I migrated to a new server from 3.0 and that info I didnt end up moving over.. I still have the old board up but out of productuion, so I can see what date had the most visitors and how many.. But can I change it on the new one to reflect that old 'record'
|
Not really - at least not without editing the database, not an easy thing to do.
|
Quote:
|
hi paul
i have notice a problem with this product, mybe i am not understanding correctly, but could you explane me how it is possible that the total members that have visited the forum today are 83 and the most members online in one day was 84, today? i have tested several times the product in both the to ways (Set to 'yes' for a rolling 24 hour display, leave as 'no' to reset the count at each members midnight.), but the result is the same. |
Quote:
:confused: |
Actually, this has been covered in the past - it's a side effect of users in different timezones. You have (at least) one user who is in a timezone ahead of you (i.e. when it's 8pm for you, it's 11pm for them). Because of this, they have seen more people than you (i.e. 84, compared to your current 83) because the "most" count is server wide, it gets updated to 84. The other count (83) is unique to you, and will catchup with the other count as the day progresses.
|
Maybe a stupid question but how am I supposed to get this to work in CMPS 2.1.0? thx
|
No idea, I don't use it. I suggest you ask in the VBA forums.
|
I've been running this hack along with who has visited and who has posted for a week or so now. I just noticed that the "most" stats do not seem to hold. I have a very small private family forum and earlier this week we had 8 visitors in one day - the "most" stat reflected that for several days. Today, we had 6 visitors and the "most" stat has changed to show 6 as the most ever visitors when it should still be showing 8. Same applies for posters...most should be 6 (and was 6 for a while) but now is showing 4 as the most ever posters.
Any ideas? Thanks. |
The only way that could happen is if something corrupted your datastore and reset the counts to zero, otherwise it's not possible without manual intevention, since the stored count is only updated if the current count is larger.
|
Hmmm...well it definitely happened and I see no signs of database corruption. Guess I'll just have to keep an eye on it and see how it goes. Thanks for the response.
|
This really has me curious and I happened to do a MySQL dump yesterday to back up my database, so I decided to do another one today and compare files.
From 04/25/2006: Code:
INSERT INTO `vb_datastore` VALUES ('maxloggedin', 'a:6:{s:9:"maxonline";i:5;s:13:"maxonlinedate";i:1144430493;s:11:"maxvisitors";i:8;s:15:"maxvisitorsdate";i:1145928403;s:10:"maxposters";i:6;s:14:"maxpostersdate";i:1145918246;}'); Code:
INSERT INTO `vb_datastore` VALUES ('maxloggedin', 'a:6:{s:9:"maxonline";i:5;s:13:"maxonlinedate";i:1146065294;s:10:"maxposters";i:5;s:14:"maxpostersdate";i:1146067830;s:11:"maxvisitors";i:6;s:15:"maxvisitorsdate";i:1146065007;}'); I did a file comparison between both database dumps and there is nothing out of the ordinary - just the usual changes from new posts, events, cron jobs running, etc. No sign of hacking or any corruption that I can see. I would love to know how these records got changed. All other stats and information are spot on as they should be, even the "most online at once" which VB itself maintains is still correct. |
Well something is resetting the counts - possibly you have something that is rewriting the maxloggedin record without the maxposters & maxvisitors data.
|
These are the hacks I've got installed:
Number of Threads in User Profile Show An Avatar On Who's Online Mood Hack 3.5 bbSpoiler Timezone Image In Profile Members Who Have Posted Today Who Has Read A Thread Borgs BBCode Pack Forum Skin In Profile Join Days Simple Breadcrumb Below Last Post Separate Sticky & Normal Threads Members Who Have Visited Today Most Ever Visitors, Posters, Chatters I've gone through the code of each and none of them make any reference to the maxloggedin datastore (except of course for "most ever visitors, posters, chatters"). I am also running vbAdvanced CMPS which does have a "who's online" module which makes references to maxloggedin. Do you think it could be the culprit? Thanks. |
I think this is the salient portion of the onlineusers module for CMPS:
Code:
$maxusers['maxonline'] = $vbulletin->maxloggedin['maxonline']; I guess I could always turn off that module but I would like to keep it if possible. Thanks! |
Ouch, yes, that is the culprit - it's using an sql query to directly write the maxloggedin record, erasing the maxposters and visitors data, that's very bad of whoever wrote it, the correct way is to use the build_datastore() function;
Try changing this line ; PHP Code:
PHP Code:
|
Much thanks, Paul!
I've added your code change to my CMPS onlineusers module and will see how it goes. Hard to believe I'm the first to encounter this. I assume a lot of people are using vBAdvanced CMPS and your plugin. If this change stops the CMPS onlineusers module from stepping on the "most" plugin's toes, I'll call it to their attention over at vbadvanced.com. Thanks again! :) |
Quote:
any idea why? |
You obviously had 266 guests - probably a load of spiders.
|
Quote:
You think so?? I will check the logs.. I just thought it was odd.. I disabled guest access all last week due to the NFL Draft because I run a Bengals site.. Maybe they were queued up just waiting for it lol |
All times are GMT. The time now is 10:09 AM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|