PDA

View Full Version : Automatic Approve members


frank12311
09-25-2011, 11:30 AM
Hi,

I have my forum setted up as to moderate new members, however, i want the forum approve members automaticly if their IP show up in table X, and if their ip is not in that table, they have still to be checked out by hand.

Is their any way with a small piece of code / small addon that can do this?

Thanks
Frank

kh99
09-25-2011, 12:31 PM
I haven't tested this at all, but you could try creating a plugin using hook register_start and code like this:


if (IPADRESS in table)
$vbulletin->options['moderatenewmembers'] = false;



(obviously you have to put in the code for checking the IPADDRESS).