I did it... you use the userid instead of username...
To ignore posts totals from the NNTP Newsgroup, simply edit your index.php and change:
Code:
$countposts=$DB_site->query_first('SELECT COUNT(*) AS posts FROM post');
to:
Code:
$countposts=$DB_site->query_first('SELECT COUNT(*) AS posts FROM post WHERE userid!=0');
If you run a script such as webwelcome where it picks out the number of posts since the user last logged in, just find the line:
Code:
$getnewpost=$DB_site->query_first("SELECT count(*) AS posts FROM post WHERE dateline > '$bbuserinfo[lastvisit]'");
and change to:
Code:
$getnewpost=$DB_site->query_first("SELECT count(*) AS posts FROM post WHERE dateline > '$bbuserinfo[lastvisit]' AND userid!=0");
You can do this for the threadcount as well - just use
thread WHERE forumid!=XX (where XX is the NNTP forum)
Now, I can turn this sucker back on!