View Full Version : Users Awaiting Moderation
macara
11-19-2008, 07:46 PM
Hello,
Is there any way to avoid that names of Users Awaiting Moderation appears on "What's Going On?", "Statistics" or "Welcome to our newest member" before I accept their registration?
Thankyou in advance
macara
11-21-2008, 10:31 PM
Please I am very needy solve this problem.
steve3402000
11-22-2008, 07:09 AM
I dont think there is, when they reg, it automatically shows who they are, sometimes they try to put websites, and spam BS as user names, I have to delete scumbags:eek: 3 times a day
MARCO1
11-22-2008, 07:25 AM
please check your inbox
Kahuna900
11-26-2008, 02:30 PM
I can't believe vbulletin will not official fix this problem. It seems pretty simple to me, why would you show any new members until they are officially a registered user?
hantousha
03-08-2009, 08:42 PM
Edit your Index.php file,
Replace:
$newusername = $vbulletin->userstats['newusername'];
$newuserid = $vbulletin->userstats['newuserid'];
Replace with:
$newuser = $db->query_first("SELECT userid, username
FROM " . TABLE_PREFIX . "user
WHERE usergroupid NOT IN (3,4,8)
ORDER BY userid DESC
LIMIT 1");
$newuserid = $newuser['userid']; // set template variables
$newusername = $newuser['username'];
In the line "WHERE usergroupid NOT IN (3,4,8)" add the groups you don't want to show...
Hope this helps...
macara
06-15-2009, 04:42 PM
Edit your Index.php file,
Replace:
$newusername = $vbulletin->userstats['newusername'];
$newuserid = $vbulletin->userstats['newuserid'];
Replace with:
$newuser = $db->query_first("SELECT userid, username
FROM " . TABLE_PREFIX . "user
WHERE usergroupid NOT IN (3,4,8)
ORDER BY userid DESC
LIMIT 1");
$newuserid = $newuser['userid']; // set template variables
$newusername = $newuser['username'];
In the line "WHERE usergroupid NOT IN (3,4,8)" add the groups you don't want to show...
Hope this helps...
Thanks a lot.
I tried your solution and it seems that it works but the "WHERE usergroupid NOT IN (3)" still appears ((COPPA) Users Awaiting Moderation).
Best Regards
edward hamilton
04-10-2010, 07:37 PM
I can't believe I finally found this simple fix to a problem that many forum admins have been struggling with for years. I wish the search in vBulletin was better. I found this through a google search. Thanks hantousha!
random_name
08-16-2013, 12:26 PM
Thank you for the help. This is very useful. Despite enabling human factors in registration, a lot of spammers still get through. Our board is setup forcing 1) email authentication 2) users awaiting moderation to prevent spam; however, they still pollute "Welcome to our newest member" and other areas.
It would be great if this support was native to the forum.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.