php forum
php mysql forum
php mysql smarty
 
Topic Options
#315561 - 09/07/07 06:43 AM Counting Myself Out of Post Count
SGHB1138 Offline
Power User

Registered: 01/01/07
Posts: 59
Loc: UK
How can I make it so my posts don't count or show on the Top Posters list ?

For some reason some of my members like to see where they are on the Top 5 and as I'm the most prolific poster they're having a hard time taking the number one spot so I would like a way to simply not have my posts count as admin.

How do I do that, if at all ?

Thanks.

smile
_________________________
Stephen G
Give Yourself to the Geek Side @
http://cinemageek.co.uk

Top
#315562 - 09/07/07 10:24 AM Re: Counting Myself Out of Post Count [Re: SGHB1138]
sirdude Offline
Enthusiast

Registered: 11/08/03
Posts: 490
Loc: SoCal
open cache_builders/top_posters.php

Php Code:
$query = "
	select t1.USER_ID,t1.USER_DISPLAY_NAME,t2.USER_TOTAL_POSTS
	from {$config['TABLE_PREFIX']}USERS as t1,
	{$config['TABLE_PREFIX']}USER_PROFILE as t2
	where t1.USER_ID <> 1
		and t1.USER_ID <> YOUR_USER_ID
	and t1.USER_ID = t2.USER_ID
	and	t1.USER_IS_APPROVED = 'yes'
	and t1.USER_IS_BANNED <> 1
	order by t2.USER_TOTAL_POSTS desc
	limit {$config['TOP_POSTERS']}
"; 


replace YOUR_USER_ID with the numeric value for your USER_ID wink

you could also instead, futz with the limit line and put in limit 2,10 so it skips the top one..

eg:
Php Code:
$query = "
	select t1.USER_ID,t1.USER_DISPLAY_NAME,t2.USER_TOTAL_POSTS
	from {$config['TABLE_PREFIX']}USERS as t1,
	{$config['TABLE_PREFIX']}USER_PROFILE as t2
	where t1.USER_ID <> 1
	and t1.USER_ID = t2.USER_ID
	and	t1.USER_IS_APPROVED = 'yes'
	and t1.USER_IS_BANNED <> 1
	order by t2.USER_TOTAL_POSTS desc
	limit 2,{$config['TOP_POSTERS']}
"; 


all kinds of ways to skin a cat

note: rebuild your cache to see the effect right away wink
_________________________

Top
#315563 - 09/07/07 10:59 AM Re: Counting Myself Out of Post Count [Re: sirdude]
SGHB1138 Offline
Power User

Registered: 01/01/07
Posts: 59
Loc: UK
Thank You sirdude

smile
_________________________
Stephen G
Give Yourself to the Geek Side @
http://cinemageek.co.uk

Top
#315586 - 09/08/07 01:06 AM Re: Counting Myself Out of Post Count [Re: SGHB1138]
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
SD skins cats; meanie... :x... Good easy mod though wink
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top



Moderator:  sirdude 
Latest Posts
[7.2.1] - Naked shoutbox
by bellaonline
05/05/12 05:00 PM
[7.x] Stop Forum Spam Integration v0.4
by bellaonline
05/05/12 03:53 PM
Shout Box

(Views)Popular Topics
Known public proxy servers 1689885
Integrated Index Page (IIP) 5.3.1 555705
Finished-[6.5.2] Games Arcade Deluxe v1.9 501236
Integrated Index Page (IIP) 5.1.1 415112
TLD Bv2.1 Released - Threads Links Directory 396822
[6.0x] Who's Online 4.0.0 [Finished] 389412
Finished-[6.5.1] Integrated Index Page (IIP) 6.5 330423
Q & A 298663
Slash UBB 266936
[6.3.x] [beta] Hit Hack 2.0 227970
Forum Stats
13621 Members
59 Forums
37191 Topics
295716 Posts

Max Online: 686 @ 06/28/07 07:04 AM

 

 

 
fusionbb message board php hacks