vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   Remove post count for a specific user... (https://vborg.vbsupport.ru/showthread.php?t=100579)

thuffner 11-11-2005 08:18 AM

Remove post count for a specific user...
 
Found this in the 3.0 forum...Wondering if anyone knows how to do this for 3.5...?

Quote:

Is there a way to do this so I can eliminate only a specific user post count? Here is the scenario:

I have a forum where a bot posts rss news feeds. I don't want the bot to accumulate posts for these messages. However, I do leave the ability for others to respond to these posts and post their own messages as well in this particular forum. I would like all users except for my two bots to be able to increase their post counts.

Make sense? Can anyone can provide a hack for me on this? Greatly appreciated.
Thanks! :)

TCM 11-11-2005 11:31 AM

I coded something like this for vB 3 (I never released it, I considered it too small, it was just something I use on my forums). I'll see if I can do the same for 3.5.

telc 11-26-2005 05:39 PM

I can't find where post counts are incremented in 3.5.1.

In 3.0.x it was in includes/functions_newpost.php

$doposts = 'posts = posts + 1,';

Does anyone know where it is done in 3.5.1? I would like to know also.

Chris M 11-26-2005 05:49 PM

/includes/class_dm_threadpost.php
PHP Code:

if ($this->info['forum']['countposts'])
                {
                    
$user->set('posts''posts + 1'false); 

Chris

telc 11-26-2005 06:18 PM

Quote:

Originally Posted by Chris M
/includes/class_dm_threadpost.php
PHP Code:

if ($this->info['forum']['countposts'])
                {
                    
$user->set('posts''posts + 1'false); 

Chris


Thanks Chris!

thuffner 11-30-2005 06:19 PM

How do you make it not count a specific user though? Chris, where in that code do you specify a User ID or something identifying the person you dont want their posts to count?

Thanks. :)

telc 11-30-2005 07:56 PM

Quote:

Originally Posted by thuffner
How do you make it not count a specific user though? Chris, where in that code do you specify a User ID or something identifying the person you dont want their posts to count?

Thanks. :)

Try this:


Change:
PHP Code:

$user->set('posts''posts + 1'false); 

To:

PHP Code:

if($this->registry->userinfo['userid'] != 9999
{
    
$user->set('posts''posts + 1'false); 



Replace 9999 with the proper userid.


All times are GMT. The time now is 12:57 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.01042 seconds
  • Memory Usage 1,734KB
  • 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_php_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (7)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