Quote:
Originally Posted by kh99
So I found the section of code that checked the answer, and I edited the file and put in code to write information to a log file. But I guess you have to be able to do at least basic php programming to do that.
|
Great minds think alike. I did just that.
In the hook named "
register_start / Check Elapsed Time" I added the following code after "
$email = kh99_sbs_fix_string($vbulletin->GPC['email']);"
Code:
$answer = $_REQUEST['humanverify']['input'];
$hash = $_REQUEST['humanverify']['hash'];
$questionx = $db->query_first("
SELECT answer
FROM " . TABLE_PREFIX . "humanverify
WHERE hash = '" . $db->escape_string($hash) . "'");
$question_num = $questionx['answer'];
$fd = fopen ($_SERVER["DOCUMENT_ROOT"]."/<some-path>/<some-file>", "a");
if ($fd) {
$ipaddr = $_SERVER["REMOTE_ADDR"];
fwrite ($fd, date("r")." $ipaddr $username $email \n");
fwrite ($fd, "\t\t Question number $question_num: $answer \n");
fclose ($fd);
}
Just alter "
<some-path>" and "
<some-file">" to proper names.
Thanks for the inspiration. I gave Spambot Stopper an "Excellent" vote. It's a good product and an excellent inspiration.