vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=251)
-   -   vB4: Board Statistics On All Pages (https://vborg.vbsupport.ru/showthread.php?t=292506)

kh99 12-04-2012 05:18 PM

Do you mean in the footer on all pages? I think the issue there is that the data in $vbulletin->userstats and maxloggedin won't be there unless that page is loading those as "special templates". What you can do is make an additional plugin using hook location init_startup and code like this:

Code:

$new_datastore_fetch = array_unique(array_merge($new_datastore_fetch, array('userstats', 'maxloggedin')));

CrumbDown 12-04-2012 05:25 PM

Quote:

Originally Posted by kh99 (Post 2388425)
Do you mean in the footer on all pages? I think the issue there is that the data in $vbulletin->userstats and maxloggedin won't be there unless that page is loading those as "special templates". What you can do is make an additional plugin using hook location init_startup and code like this:

Code:

$new_datastore_fetch = array_unique(array_merge($new_datastore_fetch, array('userstats', 'maxloggedin')));


Ok we getting there for a donation.

The code works but not showing the total post and total threads; they show "0".

kh99 12-04-2012 06:26 PM

I think you need to add a call to cache the forums, like:

Code:

// get total threads & posts from the forumcache
$totalthreads = 0;
$totalposts = 0;
cache_ordered_forums(1, 1, $vbulletin->userinfo['userid']);
if (is_array($vbulletin->forumcache))
{


CrumbDown 12-04-2012 07:03 PM

Thanks again. That worked. I have noticed few things. Whenever the plugin in enabled I get this on few pages:

Code:

Fatal error: Call to undefined function fetch_online_status() in .../html/includes/class_bootstrap.php(430) : eval()'d code on line 105
To resolve that, I have to add this is the affected php files:
PHP Code:

require_once(DIR '/includes/functions_bigthree.php'); 

Also on the member's profile page, the style sheet is not working properly. But if the plugin is disabled, all is well.

I know I have been asking for your continued support but I must give you a donation at the end. You can respond when you are ready.

kh99 12-04-2012 07:07 PM

Quote:

Originally Posted by CrumbDown (Post 2388448)
To resolve that, I have to add this is the affected php files:
PHP Code:

require_once(DIR '/includes/functions_bigthree.php'); 


You can add that in your plugin code. Probably just inside the 'if' is a good place.


Quote:

Also on the member's profile page, the style sheet is not working properly. But if the plugin is disabled, all is well.
Hopefully that's being caused by the error message, so it might go away when the above is added.


Quote:

I know I have been asking for your continued support but I must give you a donation at the end. You can respond when you are ready.
Thanks but I do this as a volunteer, so don't worry about it (the upside is that I only do what I feel like doing instead of having to do what I'm told. :) )

CrumbDown 12-04-2012 07:32 PM

Don't know what to say! Everything is working perfectly. Not sure how to thank you but thank you very, very much!

My site: here.

The footer will be changed to look beautiful. The Store template is a different story so that issue is with the developer of the Store Im using.

Kevin, once again, thank you and you will reach very far in life ;)

BTW, if I come back here that means a user of the forum found an issue lol


All times are GMT. The time now is 07:49 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.01248 seconds
  • Memory Usage 1,737KB
  • 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
  • (2)bbcode_php_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (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
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete