The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#31
|
|||
|
|||
@FireFly
Do you also know a way it shows exactly which users are online like on the first forum page and not online the amount of users? |
#32
|
||||
|
||||
Also, I noticed that this doesn't include people who are browsing a thread on forum X, it only shows the amount of people that are browsing the Forum X index.
We're a demanding sod, ain't we? |
#33
|
||||
|
||||
It means watch your server load rise.
|
#34
|
||||
|
||||
Ah. Will it also increase bandwidth usage, or ONLY server load?
|
#35
|
|||
|
|||
*bump again*
still many questions open |
#36
|
||||
|
||||
I was thinking of doing something with a heap table that kept track of people using something like map coordinates. Not too much server load, and it could work for the rest of the site.
And it would be much nicer than using the location field. You just have a lookup table that cross referenced the "coordinate" to its actual location, and each page would lookup who else has that coordinate to do a "who's on this page with you" Still thinking this one through. Ethan |
#37
|
|||
|
|||
WOW,
sounds good! Please let me now if you have achieved anythink ! Thank you! |
#38
|
||||
|
||||
Indeed, that would be great.
|
#39
|
||||
|
||||
Starting this one tommorow. Still trying to figure out the best way to do it simply. Will keep you all posted.
Ethan |
#40
|
||||
|
||||
Progress:
I put the heap table for location: CREATE TABLE location ( userid smallint(5) unsigned NOT NULL default '0', x char(255) default NULL, y char(255) default NULL, lastactivity int(10) unsigned NOT NULL default '0', sessionhash char(32) NOT NULL default '', KEY userid (userid) ) TYPE=HEAP; Then I created a function called updateLocation(x,y) I put that on all the pages and areas I wanted to track. Some of the info looks like this: Code:
userid x y lastvisit 2861 newthread 86 1002323693 3430 showthread 9797 1002323781 3575 calendar 10 1002323641 3593 showthread 4250 1002323519 Some things I have planned for this include a map drawn using GD to see where people are clustered. Right now I added a feature "Users reading this thread" up. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|