
10-11-2010, 05:51 PM
|
|
|
Join Date: Jun 2007
Posts: 92
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by pedigree
OK, Ive been nagged and nagged and nagged (and not by my wife this time).
Here is a small change to 0.61 that will be worked on in 0.7 that will allow you to submit spammer details to the database from the admin control panel. It requires editting admincp/user.php
These line numbers are for my 3.71 dev install, they might be a bit different depending on the version. Ive only tested it in 3.71
Find (about line 524)
Code:
// QUICK LINKS SECTION
Insert ABOVE that (but below the if ($vbulletin->GPC['userid']) { )
Code:
// VBSTOPFORUMSPAM MOD
if ($vbulletin->GPC['userid'] > 1) { // we dont want to ban our admin account now do we
print_table_header("vbStopForumSpam");
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' ,'');
print_table_break('', $INNERTABLEWIDTH);
}
You need to have an API key... This is a quick hack that changes the pages form so that it submits to the database. As its a quick hack, this relies 100% on javascript being enabled and makes no tests that it is enabled.
if all goes well, then Ill update the first post with a copy/paste of this. Now, stop PMing me about "can I submit data directly" please 
|
I have been confronted by a white page in the ACP main frame when manually submitting. It used to show the spam site telling me it was successful. What could cause the white page upon submit suddenly?
Thanks!
|