vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Statistics Modifications - VSa - Visitors In Last X Hours (https://vborg.vbsupport.ru/showthread.php?t=233329)

vivapotenza 04-30-2013 03:17 PM

Alternatively to the above question, Is there any way to hide ALL the names? and only show the one line quoting the members and guests figures in the last XX hours?

Spun2U 05-14-2013 12:41 AM

Great mod! Thanks for creating it.

But, I'm disabling it until I can modify which usergroups get displayed. I don't want Users Awaiting Moderation to show.

vivapotenza 05-24-2013 10:30 AM

^^ more or less in the same boat as me then, trying to exclude a certain usergroup. It would be great if the coder could be of some assistance.

blg63rm26 06-25-2013 05:48 AM

Hi,

Currently, I don't seem to have the hide_errors() problem, but in case this helps others who are on vBulletin v4.1:
  1. forumhome_complete: at this hook location, I replaced the call to PHP function split() by explode() in the actual plugin code.
  2. misc_start: ditto.

Before I made the above changes, I was getting a deprecation warning for function split(). After I made the above changes, the deprecation warning went away, and I think 'tis all working...

In order to access the plugin code you have to go via AdminCP > Plugins & Products > Plugin Manager.

Hope this helps.

john7911 06-28-2013 06:30 AM

Thank you for the Product ;)

Quote:

Originally Posted by chelssi (Post 2123170)
Hi,

When I put the mouse over one user shows "today, H:i" doesn't show the time.

Thanks,

I have the same thing, how can I fix it :confused:
How can I translate "Registered Users - Administrators - Moderators" to French?
http://imageshack.us/a/img707/3307/l5i.png

Thank you :up:

sadiq6210 07-02-2013 07:14 AM

After upgrade to 4.2.1, "total visitors" always =1 !
for example, 500 members and 1 visitors !

muimui 08-19-2013 11:34 AM

how to delete usergroup legend under list user?

bntyemen 09-14-2013 01:26 PM

I need Visitors In Last X Hours in forum sideblock

foreigner_tr 10-09-2013 09:54 AM

i upgraded from 4.2.1 to 4.2.2 and a message appeared on top of my forum:
"Warning: Function split() is deprecated in ..../forum.php(791) : eval()'d code on line 2"
and i found out that its because of Visitors In Last X Hours plugin. i disabled the plugin and error message went away.
what can i do to fix this?

ozzy47 10-09-2013 10:09 AM

ACP --> Plugins & Products -->Plugin Manager find the one that is titled, VSa - VILXH - SA, in that plugin find
Code:

if (($_REQUEST['show']=='vilxh_users') AND $vbulletin->options['vsa_visitorslastx_enable'] AND ($vbulletin->options['vsa_visitorslastx_cutoff']>0) AND !is_member_of($vbulletin->userinfo, split(',', $vbulletin->options['vsa_visitorslastx_exclgroups'])))
        {

Change it to this:
Code:

if (($_REQUEST['show']=='vilxh_users') AND $vbulletin->options['vsa_visitorslastx_enable'] AND ($vbulletin->options['vsa_visitorslastx_cutoff']>0) AND !is_member_of($vbulletin->userinfo, explode(',', $vbulletin->options['vsa_visitorslastx_exclgroups'])))
        {

Then in the plugin titled, VSa - VILXH - MN, find,
Code:

if ($vbulletin->options['vsa_visitorslastx_enable'] AND !is_member_of($vbulletin->userinfo, split(',', $vbulletin->options['vsa_visitorslastx_exclgroups'])))
Change it to this,
Code:

if ($vbulletin->options['vsa_visitorslastx_enable'] AND !is_member_of($vbulletin->userinfo, explode(',', $vbulletin->options['vsa_visitorslastx_exclgroups'])))


All times are GMT. The time now is 05:58 PM.

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.01234 seconds
  • Memory Usage 1,740KB
  • 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
  • (4)bbcode_code_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete