vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin.org Site Feedback (https://vborg.vbsupport.ru/forumdisplay.php?f=7)
-   -   New Thread Count Wrong (https://vborg.vbsupport.ru/showthread.php?t=34983)

Scott MacVicar 02-11-2002 04:17 PM

1 Attachment(s)
I'm guessin when you show the count of new threads its including those in private forums, i've added a screen shot.
When i came here it said 51 Updated Threads but when I get new it only shows 50 and as vBulletin checks for private forums in the getnew function i'm presuming its a bug in the coding.

Scott MacVicar 02-11-2002 04:20 PM

1 Attachment(s)
and after i've clicked getnew

Admin 02-11-2002 04:31 PM

The weird thing is, I also get a wrong thread count sometimes... could it be they're hiding a forum from me? :eek:

Anyhow just recently someone mentioned a new way to get these stats (total posts/threads) and I'll try to implement it.

Thanks for the heads up. :)

Scott MacVicar 02-11-2002 04:34 PM

I wish i had looked at the hack now

PHP Code:

$getnewthread=$DB_site->query_first("SELECT COUNT(*) AS threads FROM thread WHERE lastpost > '$bbuserinfo[lastvisit]'");
$getnewpost=$DB_site->query_first("SELECT count(*) AS posts FROM post WHERE dateline > '$bbuserinfo[lastvisit]'"); 

is the hack

I suppose you could make some minor alterations to the hack, to make this work.

you need to move the following section of code under the query which gets access table permissions.

PHP Code:

foreach($ipermcache as $forumid => $perms) {
  if(
$perms['canview']) {
    
$goodforums[] = $forumid;
  }
}
if(!empty(
$goodforums)) {
  
$forumperms='AND forumid='.implode(' OR forumid=',$goodforums);
}
$getnewthread=$DB_site->query_first("SELECT COUNT(*) AS threads FROM thread WHERE lastpost > '$bbuserinfo[lastvisit]$forumperms");
$getnewpost=$DB_site->query_first("SELECT COUNT(*) AS posts FROM post WHERE dateline > '$bbuserinfo[lastvisit]$forumperms"); 

So you add this below
// if user is know, then welcome

and then relocate the entire piece of code to below
PHP Code:

} else {
  
$accesscache '';


this won't have any effect on the forums


All times are GMT. The time now is 10:38 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.00966 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
  • (3)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)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