Quote:
Originally Posted by Gecuba
Great mod!
The only one feature I miss is - menu Submit Data to StopForumSpam in adminCP options or user's profile. Sometimes "fresh" spammer registrations are passing through stopforumspam check.
|
Quote:
Originally Posted by Okuma Steve
This! I catch a lot of spammers who never post so I have no why of reporting there info.
|
I think I responded to this previously. I'm using the plugin from the older vBSTopForumSpam add-on in combination with the Glowhost add-on:
Product: vBulletin
Hook Location: useradmin_edit_column1
Title: Submit to StopForumSpam.com
Execution Order: 5
Plugin PHP Code:
PHP Code:
if (!is_member_of($user['usergroupid'], 6)) // we dont want to ban our admin account now do we
{
print_table_break('', $INNERTABLEWIDTH);
print_table_header("Submit to StopForumSpam");
if ($vbulletin->options["vbstopforumspam_apikey"])
print_label_row('Submit these details to www.stopforumspam.com ban list<BR><table><tr><td>Username:</td><td><input type="text" name="username" size="30" value="'.
$user['username'] . '"></td></tr><tr><td>Email:</td><td><input type="text" name="email" size="30" value="' . $user['email'] . '"></td></tr><tr><td>IP: </td><td><input type="text" name="ip_addr" value="' .$user['ipaddress'] . '"></td></tr></table><input name="api_key" type="hidden" value="' . $vbulletin->options['vbstopforumspam_apikey'] . '"><input onclick="this.form.action=\'http://www.stopforumspam.com/add.php\';this.form.submit()" type="button" class="button" value="' . $vbphrase['submit'] . '"/>');
else
print_label_row('You need an API key from www.stopforumspam.com before you can submit to the database' ,'');
}
Plugin is Active: Yes
Added: see
https://vborg.vbsupport.ru/showpost....postcount=1826 below