View Full Version : Statistics Modifications - Fake User Online v2
Tivar
10-27-2010, 10:00 PM
Products to Install: 1
Plugins Included: 1
Setting Group : 1
Settings : 9
Phrases : 19
This Mod is just a little modified Version from Atakan KOC's Fake User vb36x (https://vborg.vbsupport.ru/showthread.php?t=139402&highlight=fake+user).
It adds members and visitors to your count in forum home.
But be carefull! It can display more registerd users online than are really registered :erm:
Installation
- Download the product file below and import it into your vBulletin via the product manager.
Add Counts, Records, Names
- Admin Control Panel > Fake Users Online
***** Update v2
Now you can edit all Numbers and the Namelist displayed in Who is Online on forum home.
Users Online = Guests + Registered
Guests Online = Real + What you want
Registeres Online = Real + What you want
Namelist = Real Registered Online (clickable) + Fakenames (non-clickable)
Record-Numbers= Usercount, Date, Time what you want or real
Kraxell
10-28-2010, 10:00 AM
what will happen, when a real user click on a fake user?
JAFRI
10-29-2010, 04:12 AM
now work vb4.2 just show There are currently 521 users online. 12 members and 509 guests
.....
raiderlax
10-29-2010, 04:30 AM
It won't actually display the names of the members online though. It just shows the number.
Can you make it show members?
alencete
10-29-2010, 05:30 AM
Is possible for an individual user what was found was the
Tivar
10-29-2010, 08:19 AM
Updated :)
You have to add the Fakenames in Adminpanel. Just the Realnames are clickable.
raiderlax
10-29-2010, 08:24 AM
Thank you so much for the update :)
One little thing that would make this mod amazing is if you could have it so we can add the usernames of real members so that when they are displayed they will be clickable links...
Thanks again
synseal
10-29-2010, 10:59 AM
What would make this perfect is if it could pull random members from your already registered users of given usergroups like the other one https://vborg.vbsupport.ru/showthread.php?t=139402&highlight=fake+user
Thanks *insalled.
abdobasha2004
10-29-2010, 01:06 PM
also possible through increasing cache lifespan
and both ways uses server load with no benefit 1
★Slap
10-29-2010, 08:26 PM
Fake Names
a legacy reborn, akia, Alec W, ASSami, AzhriaLilu, baghdad4ever, beishe8, bf777, BWJ, CAAC, cbiweb, ceho, cellarius, cmeinck, CrystalStarLight, cykelmyggen, dawges, Deathjam, Deriel, Desibabu19, diplome, drichard12, echo419, Edwin, Elitek550, empact, ge66, giorgino, GL2814, Grimsqueaker, IanW-GC8, IJeffers, iRO Wiki, Jasper, jluerken, jrh369, JVCode, jörgk, Kendsl, kentaurus, King Kovifor, KingsFan, kootta, KW802, Mac Write, magz, Mario.D, marshal, masterneme, mikeylikesitz, MsJacquiiC, nakedanvil, nerobdms, ngscaos, nmp, pablo, petertdavis, Phalynx, PitchouneN64ngc, pjaco, psalzmann, Ramsesx, RedFoxy, Reeve of Shinra, Rixcz, rughis, Ryan Ashbrook, S!p, saroook, satlazone, SCH, slinky, South Fork, Spooky_Eye, TbChampions, testii, The Vegan Forum, TheSonic, The_Hawk, The_Rascal, Tomorrow, trocobob, zelnik, zweeper
Thanks for the useful mod. It'll be great for new forums to get more members to join.
I'm going to download, install and test it out now.
concepts
10-30-2010, 07:57 PM
I would suggest making the fake names click-able only to guest that will lead to a registration page.
Then once logged in, the fake names are no longer clickable :D
HUSSEINDAWOOD
10-31-2010, 02:50 AM
Thax nice mod
Bergler
10-31-2010, 07:17 PM
Can this be edited so it will work with this, https://vborg.vbsupport.ru/showthread.php?t=233965
Tivar
10-31-2010, 10:31 PM
Can this be edited so it will work with this, https://vborg.vbsupport.ru/showthread.php?t=233965
Hi Bergler,
please try this:
<?php
if ($vbulletin->options['namesonoff']>0)
{
$buffer = $vbulletin->options['names'];
eval('$activeusers .= ", ' . $buffer . '";');
}
else
{
$activeusers = '';
}
if ((vB::$vbulletin->options['displayloggedin'] == 1 OR vB::$vbulletin->options['displayloggedin'] == 2 OR (vB::$vbulletin->options['displayloggedin'] > 2 AND vB::$vbulletin->userinfo['userid'])) AND !$show['search_engine'])
{
$datecut = TIMENOW - vB::$vbulletin->options['cookietimeout'];
$numbervisible = 0;
$numberregistered = 0;
$numberguest = 0;
$hook_query_fields = $hook_query_joins = $hook_query_where = '';
($hook = vBulletinHook::fetch_hook('forumhome_loggedinuser_ query')) ? eval($hook) : false;
$forumusers = vB::$db->query_read_slave("
SELECT
user.username, (user.options & " . vB::$vbulletin->bf_misc_useroptions['invisible'] . ") AS invisible, user.usergroupid, user.lastvisit,
session.userid, session.inforum, session.lastactivity, session.badlocation,
IF(displaygroupid=0, user.usergroupid, displaygroupid) AS displaygroupid, infractiongroupid
$hook_query_fields
FROM " . TABLE_PREFIX . "session AS session
LEFT JOIN " . TABLE_PREFIX . "user AS user ON(user.userid = session.userid)
$hook_query_joins
WHERE session.lastactivity > $datecut
$hook_query_where
" . iif(vB::$vbulletin->options['displayloggedin'] == 1 OR vB::$vbulletin->options['displayloggedin'] == 3, "ORDER BY username ASC") . "
");
if (vB::$vbulletin->userinfo['userid'])
{
// fakes the user being online for an initial page view of index.php
vB::$vbulletin->userinfo['joingroupid'] = iif(vB::$vbulletin->userinfo['displaygroupid'], vB::$vbulletin->userinfo['displaygroupid'], vB::$vbulletin->userinfo['usergroupid']);
$userinfos = array
(
vB::$vbulletin->userinfo['userid'] => array
(
'userid' =>& vB::$vbulletin->userinfo['userid'],
'username' =>& vB::$vbulletin->userinfo['username'],
'invisible' =>& vB::$vbulletin->userinfo['invisible'],
'inforum' => 0,
'lastactivity' => TIMENOW,
'lastvisit' =>& vB::$vbulletin->userinfo['lastvisit'],
'usergroupid' =>& vB::$vbulletin->userinfo['usergroupid'],
'displaygroupid' =>& vB::$vbulletin->userinfo['displaygroupid'],
'infractiongroupid' =>& vB::$vbulletin->userinfo['infractiongroupid'],
)
);
}
else
{
$userinfos = array();
}
$inforum = array();
while ($loggedin = vB::$db->fetch_array($forumusers))
{
$userid = $loggedin['userid'];
if (!$userid)
{ // Guest
$numberguest++;
if (!isset($inforum["$loggedin[inforum]"]))
{
$inforum["$loggedin[inforum]"] = 0;
}
if (!$loggedin['badlocation'])
{
$inforum["$loggedin[inforum]"]++;
}
}
else if (empty($userinfos["$userid"]) OR ($userinfos["$userid"]['lastactivity'] < $loggedin['lastactivity']))
{
$userinfos["$userid"] = $loggedin;
}
}
if (!vB::$vbulletin->userinfo['userid'] AND $numberguest == 0)
{
$numberguest++;
}
foreach ($userinfos AS $userid => $loggedin)
{
$numberregistered++;
if ($userid != vB::$vbulletin->userinfo['userid'] AND !$loggedin['badlocation'])
{
if (!isset($inforum["$loggedin[inforum]"]))
{
$inforum["$loggedin[inforum]"] = 0;
}
$inforum["$loggedin[inforum]"]++;
}
fetch_musername($loggedin);
($hook = vBulletinHook::fetch_hook('forumhome_loggedinuser' )) ? eval($hook) : false;
if (fetch_online_status($loggedin))
{
$numbervisible++;
$show['comma_leader'] = ($activeusers != '');
$templater = vB_Template::create('forumhome_loggedinuser');
$templater->register('loggedin', $loggedin);
$activeusers .= $templater->render();
vB_Template::preRegister('block_users_online', array('activeusers' => $activeusers));
}
}
// memory saving
unset($userinfos, $loggedin);
vB::$db->free_result($forumusers);
$numberguest = $numberguest + $vbulletin->options['guest'];
$numberregistered = $numberregistered + $vbulletin->options['registered'];
$totalonline = $numberregistered + $numberguest;
$numberinvisible = $numberregistered - $numbervisible;
vB::$vbulletin->datastore->fetch(array('maxloggedin'));
if (vB::$vbulletin->maxloggedin === NULL)
{
vB::$vbulletin->maxloggedin = array();
}
if (intval(vB::$vbulletin->maxloggedin['maxonline']) <= $totalonline)
{
vB::$vbulletin->maxloggedin['maxonline'] = $totalonline;
vB::$vbulletin->maxloggedin['maxonlinedate'] = TIMENOW;
build_datastore('maxloggedin', serialize(vB::$vbulletin->maxloggedin), 1);
}
if ($vbulletin->options['recordonoff']>0)
{
$recordusers = $vbulletin->options['recordusers'];
$recorddate = $vbulletin->options['recorddate'];
$recordtime = $vbulletin->options['recordtime'];
}
else
{
$recordusers = vb_number_format(vB::$vbulletin->maxloggedin['maxonline']);
$recorddate = vbdate(vB::$vbulletin->options['dateformat'], vB::$vbulletin->maxloggedin['maxonlinedate'], true);
$recordtime = vbdate(vB::$vbulletin->options['timeformat'], vB::$vbulletin->maxloggedin['maxonlinedate']);
}
$show['loggedinusers'] = true;
$statsarray = array('onlinestats' => $onlinestats,
'totalonline' => $totalonline,
'numberregistered' => $numberregistered,
'numberguest' => $numberguest,
'show' => $show,
'recordusers' => $recordusers,
'recorddate' => $recorddate,
'recordtime' => $recordtime,
'activeusers' => $activeusers,
);
return $statsarray;
}
?>
Bergler
11-01-2010, 03:53 PM
Hi Bergler,
please try this:
<?php
if ($vbulletin->options['namesonoff']>0)
{
$buffer = $vbulletin->options['names'];
eval('$activeusers .= ", ' . $buffer . '";');
}
else
{
$activeusers = '';
}
if ((vB::$vbulletin->options['displayloggedin'] == 1 OR vB::$vbulletin->options['displayloggedin'] == 2 OR (vB::$vbulletin->options['displayloggedin'] > 2 AND vB::$vbulletin->userinfo['userid'])) AND !$show['search_engine'])
{
$datecut = TIMENOW - vB::$vbulletin->options['cookietimeout'];
$numbervisible = 0;
$numberregistered = 0;
$numberguest = 0;
$hook_query_fields = $hook_query_joins = $hook_query_where = '';
($hook = vBulletinHook::fetch_hook('forumhome_loggedinuser_ query')) ? eval($hook) : false;
$forumusers = vB::$db->query_read_slave("
SELECT
user.username, (user.options & " . vB::$vbulletin->bf_misc_useroptions['invisible'] . ") AS invisible, user.usergroupid, user.lastvisit,
session.userid, session.inforum, session.lastactivity, session.badlocation,
IF(displaygroupid=0, user.usergroupid, displaygroupid) AS displaygroupid, infractiongroupid
$hook_query_fields
FROM " . TABLE_PREFIX . "session AS session
LEFT JOIN " . TABLE_PREFIX . "user AS user ON(user.userid = session.userid)
$hook_query_joins
WHERE session.lastactivity > $datecut
$hook_query_where
" . iif(vB::$vbulletin->options['displayloggedin'] == 1 OR vB::$vbulletin->options['displayloggedin'] == 3, "ORDER BY username ASC") . "
");
if (vB::$vbulletin->userinfo['userid'])
{
// fakes the user being online for an initial page view of index.php
vB::$vbulletin->userinfo['joingroupid'] = iif(vB::$vbulletin->userinfo['displaygroupid'], vB::$vbulletin->userinfo['displaygroupid'], vB::$vbulletin->userinfo['usergroupid']);
$userinfos = array
(
vB::$vbulletin->userinfo['userid'] => array
(
'userid' =>& vB::$vbulletin->userinfo['userid'],
'username' =>& vB::$vbulletin->userinfo['username'],
'invisible' =>& vB::$vbulletin->userinfo['invisible'],
'inforum' => 0,
'lastactivity' => TIMENOW,
'lastvisit' =>& vB::$vbulletin->userinfo['lastvisit'],
'usergroupid' =>& vB::$vbulletin->userinfo['usergroupid'],
'displaygroupid' =>& vB::$vbulletin->userinfo['displaygroupid'],
'infractiongroupid' =>& vB::$vbulletin->userinfo['infractiongroupid'],
)
);
}
else
{
$userinfos = array();
}
$inforum = array();
while ($loggedin = vB::$db->fetch_array($forumusers))
{
$userid = $loggedin['userid'];
if (!$userid)
{ // Guest
$numberguest++;
if (!isset($inforum["$loggedin[inforum]"]))
{
$inforum["$loggedin[inforum]"] = 0;
}
if (!$loggedin['badlocation'])
{
$inforum["$loggedin[inforum]"]++;
}
}
else if (empty($userinfos["$userid"]) OR ($userinfos["$userid"]['lastactivity'] < $loggedin['lastactivity']))
{
$userinfos["$userid"] = $loggedin;
}
}
if (!vB::$vbulletin->userinfo['userid'] AND $numberguest == 0)
{
$numberguest++;
}
foreach ($userinfos AS $userid => $loggedin)
{
$numberregistered++;
if ($userid != vB::$vbulletin->userinfo['userid'] AND !$loggedin['badlocation'])
{
if (!isset($inforum["$loggedin[inforum]"]))
{
$inforum["$loggedin[inforum]"] = 0;
}
$inforum["$loggedin[inforum]"]++;
}
fetch_musername($loggedin);
($hook = vBulletinHook::fetch_hook('forumhome_loggedinuser' )) ? eval($hook) : false;
if (fetch_online_status($loggedin))
{
$numbervisible++;
$show['comma_leader'] = ($activeusers != '');
$templater = vB_Template::create('forumhome_loggedinuser');
$templater->register('loggedin', $loggedin);
$activeusers .= $templater->render();
vB_Template::preRegister('block_users_online', array('activeusers' => $activeusers));
}
}
// memory saving
unset($userinfos, $loggedin);
vB::$db->free_result($forumusers);
$numberguest = $numberguest + $vbulletin->options['guest'];
$numberregistered = $numberregistered + $vbulletin->options['registered'];
$totalonline = $numberregistered + $numberguest;
$numberinvisible = $numberregistered - $numbervisible;
vB::$vbulletin->datastore->fetch(array('maxloggedin'));
if (vB::$vbulletin->maxloggedin === NULL)
{
vB::$vbulletin->maxloggedin = array();
}
if (intval(vB::$vbulletin->maxloggedin['maxonline']) <= $totalonline)
{
vB::$vbulletin->maxloggedin['maxonline'] = $totalonline;
vB::$vbulletin->maxloggedin['maxonlinedate'] = TIMENOW;
build_datastore('maxloggedin', serialize(vB::$vbulletin->maxloggedin), 1);
}
if ($vbulletin->options['recordonoff']>0)
{
$recordusers = $vbulletin->options['recordusers'];
$recorddate = $vbulletin->options['recorddate'];
$recordtime = $vbulletin->options['recordtime'];
}
else
{
$recordusers = vb_number_format(vB::$vbulletin->maxloggedin['maxonline']);
$recorddate = vbdate(vB::$vbulletin->options['dateformat'], vB::$vbulletin->maxloggedin['maxonlinedate'], true);
$recordtime = vbdate(vB::$vbulletin->options['timeformat'], vB::$vbulletin->maxloggedin['maxonlinedate']);
}
$show['loggedinusers'] = true;
$statsarray = array('onlinestats' => $onlinestats,
'totalonline' => $totalonline,
'numberregistered' => $numberregistered,
'numberguest' => $numberguest,
'show' => $show,
'recordusers' => $recordusers,
'recorddate' => $recorddate,
'recordtime' => $recordtime,
'activeusers' => $activeusers,
);
return $statsarray;
}
?>
Im sorry, where do I put this? :)
Bergler
11-02-2010, 09:38 PM
Anyone? Sorry if its such a stupid question but I really dont know where I would put this?
Tivar
11-02-2010, 11:48 PM
Hi Bergler, thats not a stupid question.
This is just a modfied code from the install instructions on Block - Users Online (https://vborg.vbsupport.ru/showthread.php?t=233965). But I think it doesn't work.
Please ask Lynn, the developer from Block - Users Online.
W!cKeD
11-03-2010, 11:42 PM
Can you make the Fakename Clickable? I find this better..
raiderlax
11-04-2010, 03:12 AM
Can you make the Fakename Clickable? I find this better..
Yes I would like to see this too please.
strudinox
11-04-2010, 05:20 PM
Nice mod! But what would be even more useful is to select the userID of the user you want permanently online, instead of adding fake names. This way you can create a whole bunch of fake users and mark them online constantly.
Bergler
11-05-2010, 01:03 AM
Hi Bergler, thats not a stupid question.
This is just a modfied code from the install instructions on Block - Users Online (https://vborg.vbsupport.ru/showthread.php?t=233965). But I think it doesn't work.
Please ask Lynn, the developer from Block - Users Online.
I asked here and this is what she said, https://vborg.vbsupport.ru/showpost.php?p=2117881&postcount=256
numberguy
11-05-2010, 02:15 AM
Nice mod! But what would be even more useful is to select the userID of the user you want permanently online, instead of adding fake names. This way you can create a whole bunch of fake users and mark them online constantly.
This.
raiderlax
11-16-2010, 01:26 AM
Any update for this mod?
Randomm
11-26-2010, 06:51 AM
thanks :)
rose123
12-04-2010, 10:25 PM
I love this mod. But I dont want to show names of online users. I wnat to show number of users online. How do I do this.
Thanks in advance.
ErnestA
01-31-2011, 03:27 AM
Does anyone know if it works with vB 4.1.1?
YankForum
02-02-2011, 07:16 PM
it works , and it would be nice to add a random function to display random usernames so nobody can find out it's fake
also it would be nice to have the usernames clickable
This seems to only show the number of online people, not their names.
And it doesn't show anything in Who's Online:
There are currently 75 users online. 21 members and 54 guests, with 3 spiders
Is there a way to actually show the names in What's Going On and Who's Online?
WreckRman2
02-04-2011, 12:12 AM
lame
Luerssen
03-01-2011, 10:10 AM
What about update for working in 4.1.2?
decon8x
03-02-2011, 05:17 AM
It conflict with this mod, fake user display as user legend bar
Usergroup Color Bar Legend
https://vborg.vbsupport.ru/showthread.php?t=228607
Dennis Kaczor
03-02-2011, 04:38 PM
Hope there is going to be an update for this. Just found that this is causing issues for me with the On-Line users in vb 4.1.2. Would love to get this one in operation again.
Dennis Kaczor
03-02-2011, 04:44 PM
I love this mod. But I dont want to show names of online users. I wnat to show number of users online. How do I do this.
Thanks in advance.
Yes in that version, but not in version 4.1.2
Wordplay
03-11-2011, 08:09 AM
this would be great if it showed actual users not just made up names, plus in 4.1.2 if fake names is enabled then it doesn't show any names at all (not even the actual people online).
plus it is only helpful if you have who's online unviewable by registered user / guests, because the numbers there don't add up.
sorry had to click uninstall.
CrosseyedGamer
03-31-2011, 10:08 PM
Doesn't seem to work as mentioned in the update notes. Not finding where to add real names and have them show up as links. Fake names added show up as text only.
Namelist = Real Registered Online (clickable) + Fakenames (non-clickable)
mountainlife
04-10-2011, 10:20 PM
Not working for 4.2.1 , Not adding to registered member count Could you please update this? Thanks!!
mountainlife
04-10-2011, 10:22 PM
Does this hack not add fake registered members, only online members?
It should add registered members
C0D3D
04-13-2011, 12:31 PM
Can you make it so that we can use fake members that we added on our own and make it possible to click on that fake member that you created instead of fake names? Also it doesn't show the names on v4.1.2+
Ramsesx
04-13-2011, 01:18 PM
And please make it that the fake members are writing many useful posts.
(joking)
I'll give it a try. Thanks.
Ole_Chilli
04-14-2011, 01:09 AM
Fake users do not show up for me ?
numbers show but fake names do not ?
any suggestions
bad2dbone
05-04-2011, 04:37 PM
im confused on how to this i go to uploading the file and it takes me to whats inside the file
Bob_R
05-22-2011, 01:47 AM
this would be great if it showed actual users not just made up names, plus in 4.1.2 if fake names is enabled then it doesn't show any names at all (not even the actual people online).
plus it is only helpful if you have who's online unviewable by registered user / guests, because the numbers there don't add up.
sorry had to click uninstall.
Bingo. (for vb 4.1.3)
I activated it and it showed a number of users and guests online but didn't show any names!
Dennis Kaczor
05-23-2011, 03:45 PM
I have been watching this for some time hoping there would be an update to this as it stopped working since vb 4.1.2 since VB made some slight changes to the code. The person that wrote this code has not been on here since Jan of this year, and it makes me think that this is a dead mod now?
Bob_R
06-04-2011, 01:15 AM
Can someone take it over and fix it?
That would be cool!
mountainlife
06-22-2011, 03:46 PM
REALLY need to be able to add to my over all members count not online
but members of the forum count, anyone know how?
Khriz
07-15-2011, 12:54 PM
do not display the fake names in vb 4.1.4
could fix it !
Would be good idea that the names be links but not clickeables or carry
a message as "not available profile, try later". XD
Lemrith
08-27-2011, 11:11 PM
Can someone take it over and fix it?
That would be cool!
yeah would be nice...
anyhow, some suggestions...
-display users from a usergroup
(wre all the 'banned ur not used accouns are in, to be 'fake online)
-random guest's between two numbers, all ~ 20 mins
-not more reg users online than those who are registeres... ^^
REALLY need to be able to add to my over all members count not online
but members of the forum count, anyone know how?
https://vborg.vbsupport.ru/showthread.php?t=265672 might be for you
FTDave
10-14-2011, 06:55 PM
Is there anyway to change color of the users? It is gray.
Thanks
fake name not work with vb 4.1.8 beta
HHelp1
11-16-2011, 02:23 PM
Fake name not work with 4.1.7 :(
Sworm
12-01-2011, 06:58 PM
Can the author upgrade this good hack for 4.1.8?
sp3z!aL
12-02-2011, 06:43 PM
yes please upgrade Nice Mod but fake names not work
tele955848
12-03-2011, 10:59 AM
Cool - Thx
Nominate and Perfekt Work
Cool - Thx
Nominate and Perfekt Work
what ?
uninvited13th
02-22-2012, 01:46 AM
please update.. :)
TombstoneWarrior
03-12-2012, 02:04 AM
im confused on how to this i go to uploading the file and it takes me to whats inside the file just upload the xml file in your plugins + products section like every other mod. options are in the options section. LOL Good luck!:up:
Nirjonadda
03-17-2012, 07:38 PM
Its not working on 4.1.10
ru55ian
04-09-2012, 05:58 PM
This hasn't worked for a while now. VB changed :
<!-- logged-in users -->
<div id="wgo_onlineusers" class="wgo_subblock section">
<h3 class="blocksubhead"><img src="{vb:stylevar imgdir_misc}/users_online.png" alt="{vb:rawphrase currently_active_users}" />{vb:rawphrase currently_active_users}</h3>
<div>
<p>{vb:rawphrase there_are_x_y_online_link, {vb:raw totalonline}, {vb:raw session.sessionurl_q}} <span class="shade">{vb:rawphrase x_members_and_y_guests, {vb:raw numberregistered}, {vb:raw numberguest}}</span></p>
<p>{vb:rawphrase most_users_ever_online_was_x_y_at_z, {vb:raw recordusers}, {vb:raw recorddate}, {vb:raw recordtime}}</p>
<vb:if condition="$activeusers">
<ol class="commalist" id="wgo_onlineusers_list">
<vb:each from="activeusers" value="loggedin">
<li>{vb:stylevar dirmark}<a class="username" href="{vb:link member, {vb:raw loggedin}}">{vb:raw loggedin.musername}</a>{vb:raw loggedin.invisiblemark}{vb:raw loggedin.buddymark}{vb:raw loggedin.comma}</li>
</vb:each>
</ol>
</vb:if>
</div>
</div>
<!-- end logged-in users -->
Can anyone help to integrate this plugin into 4.1.1...
There just needs to be a change in plugin here:
$buffer = $vbulletin->options['names'];
eval('$activeusers .= ", ' . $buffer . '";');
}
Nirjonadda
04-09-2012, 07:00 PM
Anyone update this mod for 4.1.10
Nirjonadda
04-20-2012, 04:37 PM
Developer Last Online: Jan 2011...So This Mod No More Update ?
Hedges
05-08-2012, 01:28 PM
We need an update on this bad boy!
marccap
05-21-2012, 11:31 PM
Works on 4.1.12 for guests online numbers but not showing users fake names online
Arrogant-One
08-08-2012, 07:40 AM
Works on 4.1.12 for guests online numbers but not showing users fake names online
Exactly marccap, I have the same problem. Not only is it not showing new fake members in Whose Online, but it made the entire Whose Online area disappear.
Add Names online
Name1, Name2, Name3,..
noht work for vbulletin 4.2.0
if I write the fake names do not come out in the statistics. If I enable Fake Names On / Off, disappear even real users. Where the problem???
EBZ2010
09-29-2012, 11:23 AM
Why would anyone want to use this. Seems like using this mod allows admins to use other mods that would violate their community members. I know of a tournament website named after a military invasion that uses the log into user accounts, and this fake mod which reading their members pm and such violates any privacy rules they use in their terms of service. Mods like this imo should not be made as it is fake, and really serves no purpose.
legiondadon
12-06-2012, 04:07 AM
doesnt work for 4.2pl3 jus erases the name
orangecopper
01-10-2013, 11:02 AM
i assume the MOD support is gone, with no developer around or not supporting its a risk to use it on the board, in addition it does not work on my 4.1.2 - the numbers change but not the names appear.
jskoh
02-27-2013, 06:00 AM
XML Error: not well-formed (invalid token) at Line 1 using vb4.2
TheInsaneManiac
06-03-2013, 02:04 AM
Is there any update to this mod?
iraqiboy90
06-07-2013, 01:35 PM
lol, someone looking for attention? Why would you need this hack? How about creating original stuff and REAL people will start registering......
At this moment i have this little solution.
Edit your FORUMHOME, search <!-- logged-in users --> and add this (red part on the code):
Change color on the code (color="white")
I'm at work for ricreate plugin with code correct. (i not promise nothing), at this moment i not have understand what is the problem on the code :(
<!-- logged-in users -->
<div id="wgo_onlineusers" class="wgo_subblock section">
<h3 class="blocksubhead"><img src="{vb:stylevar imgdir_misc}/users_online.png" alt="{vb:rawphrase currently_active_users}" />{vb:rawphrase currently_active_users}</h3>
<div>
<p>{vb:rawphrase there_are_x_y_online_link, {vb:raw totalonline}, {vb:raw session.sessionurl_q}} <span class="shade">{vb:rawphrase x_members_and_y_guests, {vb:raw numberregistered}, {vb:raw numberguest}}</span></p>
<p>{vb:rawphrase most_users_ever_online_was_x_y_at_z, {vb:raw recordusers}, {vb:raw recorddate}, {vb:raw recordtime}}</p>
<vb:if condition="$activeusers">
<ol class="commalist" id="wgo_onlineusers_list">
<vb:each from="activeusers" value="loggedin">
<li> {vb:stylevar dirmark}<a class="username" href="{vb:link member, {vb:raw loggedin}}">{vb:raw loggedin.musername}</a>{vb:raw loggedin.invisiblemark}{vb:raw loggedin.buddymark}<b><font color="white"> {vb:raw $vbulletin->options['names']}</font></b></li>
</vb:each>
</ol>
</vb:if>
</div>
</div>
<!-- end logged-in users -->
john7911
06-28-2013, 06:37 AM
thanks :up:
can anyone modify the code in order to show the name for 4.2.1. I actually have number as all users above.
Thank you.
santor
07-20-2013, 10:44 AM
thanks :up:
can anyone modify the code in order to show the name for 4.2.1. I actually have number as all users above.
Thank you.
PLEASE update for v.b 4.2 !
furnival
08-10-2013, 11:28 AM
PLEASE update for v.b 4.2 !
Ditto. Please update it!
santor
08-10-2013, 07:51 PM
maybe he cannot update maybe he does not know how to .. :)
g10net
09-14-2013, 07:08 PM
Ditto. Please update it!
we need updated version please
Arrogant-One
10-24-2013, 10:36 PM
we need updated version please
Its very sad that this mod doesn't work. It would be such a boost to forums like mine. I talked to DB Tech about it once, and he said he would think about it, but he never actually did anything :( (other than thinking about it).
d1jsp
11-14-2013, 04:40 PM
Bump for update... This line of code is the culprit that breaks the online user list section:
eval('$activeusers .= ", ' . $buffer . '";');
Example array structure that goes into $activeusers in 4.2:
$fakeUser = Array(
"userid" => 371,
"username" => "silvercharm12",
"invisible" => 0,
"inforum" => 0,
"lastactivity" => 1384445336,
"lastvisit" => 1384375718,
"usergroupid" => 2,
"displaygroupid" => 2,
"infractiongroupid" => 0,
"musername" => "silvercharm12",
"displaygrouptitle" => "Newbie",
"displayusertitle" => "",
"comma" => ",",
"buddymark" => "",
"invisiblemark" => "",
"online" => "online",
"onlinestatusphrase" => "x_is_online_now");
d1jsp
01-15-2014, 12:42 AM
Bump... see my above post.
john7911
02-21-2014, 08:43 PM
Bump for update... This line of code is the culprit that breaks the online user list section:
eval('$activeusers .= ", ' . $buffer . '";');
Example array structure that goes into $activeusers in 4.2:
$fakeUser = Array(
"userid" => 371,
"username" => "silvercharm12",
"invisible" => 0,
"inforum" => 0,
"lastactivity" => 1384445336,
"lastvisit" => 1384375718,
"usergroupid" => 2,
"displaygroupid" => 2,
"infractiongroupid" => 0,
"musername" => "silvercharm12",
"displaygrouptitle" => "Newbie",
"displayusertitle" => "",
"comma" => ",",
"buddymark" => "",
"invisiblemark" => "",
"online" => "online",
"onlinestatusphrase" => "x_is_online_now");
Hi,
the name don't show, what i have to do?
thank you.
Homie22
07-09-2014, 12:10 AM
HELLPPPPPPP names dont show ):
tbworld
07-09-2014, 12:40 AM
Please read the modification's thread carefully. before you install a modification. This modification appears from the thread posts that it no longer works for later versions of vBulletin.
:)
john7911
07-09-2014, 08:01 AM
Please read the modification's thread carefully. before you install a modification. This modification appears, from the thread posts, that it no longer works for later versions of vBulletin.
:)
Thank you for your message :)
Do you know something similar to this?
anesti
10-11-2014, 06:50 PM
no good mod
tbworld
10-11-2014, 08:24 PM
Thank you for your message :)
Do you know something similar to this?
Look at vbsocial.com they have a commercial version. Never used it, so this is not a recommendation.
:)
anesti
10-12-2014, 08:19 PM
this mod not work for what upload this mod please tutorial or update mod.all person not work this.
ozzy47
10-12-2014, 08:33 PM
Doubt the developer will do anything.
Developer Last Online: Jan 2011
https://vborg.vbsupport.ru/images/misc/warning.gif Not Supported
anesti
10-14-2014, 08:36 PM
sory ozzy47 you have this mod look here this forum all member is all time online
http://www.geosharing.com
look how have this mod or is another mod.
ozzy47
10-14-2014, 09:29 PM
All I see is a blank page.
yilmaz
10-26-2019, 08:38 AM
thanks :up:
can anyone modify the code in order to show the name for 4.2.1. I actually have number as all users above.
Thank you.
PLEASE update for v.b 4.2 !
4.2.5 works fine
john7911
04-30-2020, 04:22 PM
4.2.5 works fine
Thank you very much :)
:):):):):):):):):):):):):):):):):):):):)
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.