vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   How Do i?? (https://vborg.vbsupport.ru/showthread.php?t=88501)

imported_Blindchild02 02-19-2004 11:49 PM

How Do i??
 
how do i make the statistics from the "whats going on" box into my header ?

such as :

threads : #
posts : #
Members : #
Newest member : #

CannonFodder 02-22-2004 12:59 AM

add this to your php include start

PHP Code:

 $totalthreads 0;
$totalposts 0;
if (
is_array($forumcache))
{
 foreach (
$forumcache AS $forum)
 {
  
$totalthreads += $forum['threadcount'];
  
$totalposts += $forum['replycount'];
 }
}
$totalthreads vb_number_format($totalthreads);
$totalposts vb_number_format($totalposts);
// get total members and newest member from template
$userstats unserialize($datastore['userstats']);
$numbermembers vb_number_format($userstats['numbermembers']);
$newusername $userstats['newusername'];
$newuserid $userstats['newuserid'];
// ### ALL DONE! SPIT OUT THE HTML AND LET'S GET OUTA HERE... ###
eval('$navbar = "' fetch_template('navbar') . '";');
eval(
'print_output("' fetch_template('FORUMHOME') . '");'); 


imported_Blindchild02 02-22-2004 02:47 AM

thanks, worked great, but i had to take this part out

Code:

// ### ALL DONE! SPIT OUT THE HTML AND LET'S GET OUTA HERE... ###
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('FORUMHOME') . '");');

it totally screwed up my index lol

imported_Blindchild02 02-23-2004 12:37 AM

UPDATE, ok, this only works on the index page, its in the banner... so i need it to work on all of them :\

Zachery 02-23-2004 05:29 AM

It requires hacking, ive given you a hint already :)

imported_Blindchild02 02-24-2004 02:10 AM

yes, i know.... could u help me faranth? :D
i also asked at vb.org, so please dont suggest that


All times are GMT. The time now is 11:05 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.00953 seconds
  • Memory Usage 1,725KB
  • 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)bbcode_php_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