vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   How can I get a list of userids of users online? (https://vborg.vbsupport.ru/showthread.php?t=193757)

Chunky Monkey 10-16-2008 09:03 AM

How can I get a list of userids of users online?
 
Hi,

Can somebody please tell me the easiest way to get a list of the userids of the users currently logged in?

Thank you.

VBDev 10-17-2008 04:38 PM

Hi,

I think that the only way to achieve that will be to go through the session table with a bit of coding to get only the real online user (not those with session that is timeout).

Clément

Lynne 10-17-2008 04:48 PM

Where do you want this list? Do you just mean you want to know the userids of the users when you look at the Who's Online list? If so, that can probably be achieved with just a template edit to add the userid next to their name.

Chunky Monkey 10-17-2008 06:09 PM

Thanks for writing back, guys.

The list would be used to either exclude or include online users in various games, extras, etc., that I am adding to the forum. For instance, anyone logged in at any given time might be given a bonus this or that, or anyone offline might lose points in a game while anyone online might be "protected" from the event. I need an array of the online userids so I can add something to my database queries such as

Code:

foreach($offlineUsers as $user)
{
  $sql .= " AND userid != '$user';
}

This way when I perform various operations on users and custom fields I've added for them in the user table I can exclude or include only those on or offline.

Any advice for how to get this array of online users would be greatly appreciated.

Thanks!

Lynne 10-17-2008 06:52 PM

Take a look at the online.php script. It does a query to get the array (around line 245), so just steal the same query.

Chunky Monkey 10-17-2008 08:06 PM

Easy enough, thanks so much for pointing me in the right direction!


All times are GMT. The time now is 06:19 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
  • Page Generation 0.00963 seconds
  • Memory Usage 1,716KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (6)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete