vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   Post Count on Forum Home - statistics (https://vborg.vbsupport.ru/showthread.php?t=78593)

telc 03-23-2005 01:26 AM

Post Count on Forum Home - statistics
 
How can I have the postcount on the index.php show the total # of posts ever posted, counting posts that have been deleted.


In vb2x it could be done this way.

https://vborg.vbsupport.ru/showpost....70&postcount=4

deathemperor 03-23-2005 10:57 AM

Xenon said 2 ways of displaying postcount, one is the real total number of posts on your forum, the 2nd is the unreal posts which includes deleted posts, so to make it's as your need just make: 1 for total posts that still there, make 2-1=3 for the posts that were deleted.

telc 03-23-2005 11:00 AM

Were can I get these values. All I really need is the max(postid) and threadid

deathemperor 03-23-2005 11:05 AM

no just max(postid) , you can refer the link above of Xenon to modify, I believe it's different in vb3 but somehow it would just query all posts that way, beside it requires your php + vb3 knowledge.

Trigunflame 03-23-2005 11:53 AM

Open your index.php in your main forum directory.

Look for this at the bottom:
PHP Code:

eval('$navbar = "' fetch_template('navbar') . '";');
eval(
'print_output("' fetch_template('FORUMHOME') . '");'); 

Above this add:

PHP Code:

// Total Members
$totalPosts $DB_site->query_first("SELECT max( postid ) AS total FROM " TABLE_PREFIX "post"); 

Open your FORUMHOME template, and add $totalPost[total] wherever you want it to display.

telc 03-23-2005 12:19 PM

Thanks! I was going to add that query but I wasnt sure if the variable already existed. So I didnt want to add the extra overhead of a new query. But it seems to be working great.


All times are GMT. The time now is 05:51 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.01030 seconds
  • Memory Usage 1,723KB
  • 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
  • (2)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