Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.5 > vBulletin 3.5 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
AJAX Who's Online Details »»
AJAX Who's Online
Version: 1.00, by Red Blaze Red Blaze is offline
Developer Last Online: Mar 2016 Show Printable Version Email this Page

Version: 3.5.3 Rating:
Released: 01-12-2006 Last Update: Never Installs: 31
Template Edits
Code Changes Is in Beta Stage  
No support by the author.

First off, this is my first modification. It's tiny, it's obvious, but I'm proud of it. I have Zero Tolerance to thank, he did give me some hints and tips.

Description:
This only refreshes the names of the users in the index page of the forums. Not the "currently online" number of users. It could say currently 4 users online, and there's a huge list of usernames.
I don't really see a need of a picture since there's no visual change. It only calls the names of the users currently online and removes them if they're offline without the need of refreshing the index page of the forums.

Edits:
1 Template to edit (FORUMHOME)
1 File to edit (index.php)

First the File Edit:
Open your index.php file in your forum directory.
Find:
Code:
// ### ALL DONE! SPIT OUT THE HTML AND LET'S GET OUTTA HERE... ###
Above add:
Code:
if ($_GET['do'] == 'online')
{
	echo $activeusers;
	exit;
}
Save, close, then upload index.php file to your forum directory.

Next, open your FORUMHOME template.
Find:
Code:
			<div class="smallfont">
				<div style="white-space: nowrap"><phrase 1="$recordusers" 2="$recorddate" 3="$recordtime">$vbphrase[most_users_ever_online_was_x_y_at_z]</phrase>
Above that, add:
Code:
<script type='text/javascript'>
<!--
function requestWhoOnline()
{
	doReqOnline = new vB_AJAX_Handler(true)
	doReqOnline.onreadystatechange(ReqOnlineDone)
	doReqOnline.send('index.php?do=online')
}
function ReqOnlineDone()
{
	if (doReqOnline.handler.readyState == 4 && doReqOnline.handler.status == 200)
	{
		fetch_object('whoisonline').innerHTML = doReqOnline.handler.responseText
		setTimeout("requestWhoOnline()", 60000)
	}
}
setTimeout("requestWhoOnline()", 20000)
-->
</script>
Now Find:
Code:
<div>$activeusers</div>
Replace with:
Code:
<div id="whoisonline">$activeusers</div>
====================

Since this is my first mod, I'd back up the files. Forgive me if this hack has already been done. I made a strict search and found no such thing. I decided to try to do it, and voila! Go me.

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #42  
Old 01-14-2006, 06:34 PM
Lea Verou Lea Verou is offline
 
Join Date: Jul 2005
Location: Greece
Posts: 1,856
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Lol you're funny. I don't have a man in my life, huh? Probably you need to find a girlfriend. I can assure you I am pretty satisfied with my boyfriend for more than a year now and he surely is much more a "real man" than you seem to be.
So stop talking about issues you don't know just "in case" cause you seem ridiculus.
Reply With Quote
  #43  
Old 01-14-2006, 09:25 PM
NuclioN's Avatar
NuclioN NuclioN is offline
 
Join Date: Aug 2002
Posts: 955
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ChurchMedia
Great hack! Works perfectly. **installs**

I did add the code change for index.php as a plugin instead of hacking the file. It's the forumhome_complete hook.

Thanks!
That's strange. There's argue about the serverload and no one is asking for your method to avoid file editting. How did you code that?
Reply With Quote
  #44  
Old 01-14-2006, 09:30 PM
TyleR's Avatar
TyleR TyleR is offline
 
Join Date: Nov 2004
Location: North Carolina
Posts: 349
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

for a first hack, this is pretty dang good..Kudos, Sonikku

As for server load, people, vBulletin does it already..whats one more SMALL object going to hurt? Answer: nothing.

- Tyler
Reply With Quote
  #45  
Old 01-14-2006, 10:14 PM
NuclioN's Avatar
NuclioN NuclioN is offline
 
Join Date: Aug 2002
Posts: 955
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Strange thing happened. We have the spiders wol notition and when you refresh the page they're there but when this addon is refreshing...they are gone!
Reply With Quote
  #46  
Old 01-14-2006, 10:25 PM
Red Blaze's Avatar
Red Blaze Red Blaze is offline
 
Join Date: Jan 2003
Location: Texas
Posts: 493
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

NuclioN, It only calls "activeusers". I believe that they don't call out guests and spiders.

Borgs8472, The Who's Online page already refreshes on its own.

Moosa, I'll see what I can up with to put it on vBA.

o0oicebergo0o, I apologize, but you need to shut your trap. You're talking big saying that you don't want her talking to you, but here you are repling back to her. If you want her to stop talking to you, YOU have to stop talking to her. And you'd give back to the community by doing just that.
Reply With Quote
  #47  
Old 01-15-2006, 12:26 AM
Tony G's Avatar
Tony G Tony G is offline
 
Join Date: Nov 2001
Location: Melbourne, Australia
Posts: 8,357
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Everyone who is flaming each other, please stop right now. This thread isn't intended for you to rip into each other like that. Got a problem? Use PM or contact each other outside the forums. That crap won't be tolerated here. Anymore further flaming posts will be deleted without warning.

Thank you.
Reply With Quote
  #48  
Old 01-15-2006, 12:27 AM
Guest190829
Guest
 
Posts: n/a
Default

Please do not start flame-wars in the middle of a hack thread, or any thread for that matter. If you feel like a hack may be too server intensive, then kindly notify the hack author and I'm sure he/she will notify users that the hack is not intended for larger boards...

Sonikku, this is just a official notification that this will increase server load dramatically for boards with a handful of active members...
Reply With Quote
  #49  
Old 01-15-2006, 04:18 AM
o0oicebergo0o o0oicebergo0o is offline
 
Join Date: Dec 2005
Posts: 14
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Michelle
Lol you're funny. I don't have a man in my life, huh? Probably you need to find a girlfriend. I can assure you I am pretty satisfied with my boyfriend for more than a year now and he surely is much more a "real man" than you seem to be.
So stop talking about issues you don't know just "in case" cause you seem ridiculus.
hey now, stick to the topic, the topic is this wonderful hack, please stay focused :nervous:
Reply With Quote
  #50  
Old 01-15-2006, 07:15 AM
EasyTarget EasyTarget is offline
 
Join Date: Nov 2004
Posts: 660
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

don't be an idiot iceberg.. you're like the kid that has to do something one more time after they're told not to.
Reply With Quote
  #51  
Old 01-15-2006, 11:55 AM
o0oicebergo0o o0oicebergo0o is offline
 
Join Date: Dec 2005
Posts: 14
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by EasyTarget
don't be an idiot iceberg.. you're like the kid that has to do something one more time after they're told not to.
Being called an idiot dosen't really sit well with me. That's a very disrespectful thing to say and it trully just took a tool on my emotions. You need to grow up, fast. But I expect you to easily degrade someone within a shielded environment via binary. I'm sorry you feel this way about me without getting to know me, and i'm trully concerned for you eventhough this is a coding forum, in all honesty, mabey you should read this book

Anyway, how is your experences with the server load for this modification, especially people with 50 or more concurrent users.
For another idea, possibly a secondary modification since this idea is pretty neat, how about having the number of members currently online displayed at the very top of the page, or better yet, in the status bar of your internet browser which would update its self automatically every so many minutes. Just an idea.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 07:11 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.07581 seconds
  • Memory Usage 2,311KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (6)bbcode_code
  • (3)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete