View Full Version : Moderate Registrations From Certain IP Addresses
Tigga
09-01-2004, 10:00 PM
One of my clients asked me to create this for him a little while ago. It's a pretty simple hack, but seems to be pretty useful, so I thought I'd share it here as well. :)
What does it do?
Ever had problem users that keep registering and you can't ban their IP address because it's too common and other user's may be using the same IP/host? This hack may help you then. It gives you a new setting in your Admin CP where you may specify a list of IP addresses to moderate registrations from. Any new registrations from any of the IP addresses you specify will be added to the "(COPPA) Users Awaiting Moderation" group instead of the registered group. Simple, but effective. :)
File Modifications: 1
Queries to run: 3
Time to Install: 1 minute
Thanks for Sharing Brian, I may find this useful ;)
???`S?LV?R???`
09-02-2004, 10:05 PM
nice..
Will this work with partial IPs like the normal IP banning options?
Tigga
09-06-2004, 03:40 PM
Will this work with partial IPs like the normal IP banning options?Yes. It works exactly the same as the IP banning option. :)
Dennis B
09-09-2004, 12:38 AM
Very useful, much better than moderating everybody. :)
Thanks for sharing.
It looks very good but what if a future vbulletin version installs over those phraseids? Is there any system in place that frees up particular phraseids or make sure these hacks won't clash?
Tigga
01-23-2005, 06:59 PM
Didn't realize I had the phraseid's in there. There's no way future versions of vB would use those though. The only way you would run into a problem is if you already had those phraseids in your db, in which case you'd get an error when trying to run the queries. I've removed the phraseids from the queries though.
While I really the idea behind this hack, I think you could approachthis better by focusing on implementing it in this section instead:
if ($_REQUEST['a'] == 'act')
The reason being, in the current way you are allowing this user tocircumvent email verification. IMO, you should allow the user to gointo Users Awaiting Email Verification usergroup first. Then when itcomes to activation, at THAT point test for IPmoderation and put theuser there. Otherwise, you won't know if it's a good email in the firstplace.
Hope this makes sense.
Here you go I have a fix for the issue of this user not having to verify their email first.
Move down your whole code and modify it a bit. The new code should look like
$vboptions['ipusermoderation'] = trim($vboptions['ipusermoderation']);
if ($vboptions['ipusermoderation'])
{
$addresses=explode('', preg_replace("/[[:space:]]+/", "",$vboptions['ipusermoderation']) );
foreach ($addresses AS $val)
{
if (strpos(' ' . IPADDRESS, ' ' . trim($val))!==false)
{
//thiswill be theusergroupidAFTER the user is verified
$lateractivationid=4;
}
else
{
$lateractivationid=2;
}
}
}
And you want to place it right before this
// sort out emails and usergroups
if ($vboptions['verifyemail'])
{
BUT you will have to ALSO change this line:
$activateid = build_user_activation_id($userid, 2, 0);
TO
$activateid = build_user_activation_id($userid, $lateractivationid, 0);
and you should be all set. WARNING, untested!
Kevlar
02-17-2005, 07:41 PM
could we possibly ellaborate on this some... so that instead of using IP addresses, we can use free-email hosts? If any user registers with a free-email host, they will be added to the "(COPPA) Users Awaiting Moderation" group instead of the registered group.
-=Sniper=-
06-07-2005, 11:12 PM
I can't seem to get this working at all, tested it many times using the above code.
thats the one after the verify their email address.
I can't seem to get this working at all, tested it many times using the above code.
thats the one after the verify their email address.
Meaning you used my code?
-=Sniper=-
06-08-2005, 03:43 PM
yes :)
Hmm, I do have that code working for me. What happens, iow, in what way does it fail?
-=Sniper=-
06-08-2005, 03:54 PM
it alwasy seem to go to the register group rather than moderate group.
I have put my IP in the moderate section, I email my self the activatin codes and confirm and don't get added to moderate usergroup but normal.
i have set register ip for the user name as mine...
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.