vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   percentage code is way off on large boards (https://vborg.vbsupport.ru/showthread.php?t=63062)

John 03-29-2004 09:52 AM

What does the $newuserid variable represent?

John 03-29-2004 10:02 AM

Either way - to figure out percentages, you divide the small number by the big number, and multiple by 100.

Looking at your code, I think you're doing it the other way round. (Presuming that $numbermembers is the total number, and $newuserid is the fraction of that.) If $newuserid is the bigger number, ignore the variable switch I made in the vb_number_format function below.

I've also removed the if statement, as I can't see what the difference is between the code in each branch.

PHP Code:


// this gives us a value in the $statscache['activepercent'] variable
$statscache['activepercent'] = vb_number_format(($newuserid $numbermembers) * 100); 

// You can lob off the last two digits: 
$lasttwo substr($statscache['activepercent'], -2); 

// And then see if that equals 00 
if ($lasttwo == '00'

     
// intval returns an integer value 
     
$statscache['activepercent']= intval($statscache['activepercent']); 


// if you want it in the variable, we can add the trailing % from before
$statscache['activepercent'] .= '%'


John 03-29-2004 10:03 AM

Also, instead of $newuserid, shouldn't it be $activemembers?

Boofo 03-29-2004 10:20 AM

Quote:

Originally Posted by John
Also, instead of $newuserid, shouldn't it be $activemembers?

When I used $activemembers like you suggested, it returned a 0. The $newuserid is the userid of the newest member, which would give you the highest number. ;)

I used this same code at one time and it seems that any boards that have over 1000 posts mess up with the percentage like this. It ends up showing like 15,300%. What would cause this to be happening? On my small site I don't have that problem. It works great for me.

John 03-29-2004 10:27 AM

What do you get with $numbermembers / $newuserid?

Boofo 03-29-2004 10:36 AM

I get this:

Quote:

Total Registrations: 46, Active Registrations: (42 Members = 91.30%)
That shows up fine but the problem I am having is with the Top Poster Percentage and the Top Thread Starter Percentage on larger boards. On mine, it works like it is suppposed to. On larger boards with large post counts and thread counts it really messes up. Check out my Forumhome Stats hack thread on the last 2 or 3 pages and you will see what I mean. Or even the first post in this thread.


All times are GMT. The time now is 09:34 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.01159 seconds
  • Memory Usage 1,728KB
  • 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_php_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)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