mine had been working well, been receiving e-mails just fine, and now just recently i've not been getting e-mails and bots are getting in.
i checked my templates and re-imported the product, also checked the hooks. all seems to be in place.
any ideas?
Quote:
Originally Posted by scan-pa
30 sec. will let most bots in.....
15 seconds and under is the recomendation. Reg Bots are super quick, aprox 7 - 18 sec, per reg page.
turn it down a few sec.
|
am pretty sure this is
incorrect. The code is written such that if they get in UNDER the time you specify they're flagged as a bot. so a
higher time should nab
more at the risk of getting legit users, however.
Code:
if ($isbot_timediff <= 15) // difference in seconds
{
$isbot_username = htmlspecialchars_uni($vbulletin->GPC['username']);
$isbot_email = htmlspecialchars_uni($vbulletin->GPC['email']);
$isbot_subject = $vbphrase['isbot_user_blocked_from_registering'];
$isbot_message = $vbphrase['isbot_the_following_name_email_blocked']
...
}