Greetings,
I'm nearly finished updating our website 6.0 from 3.0, and I'm working on updating the PHP on the form submissions. I've installed the latest version of PHPMailer, and the setup seems to be working. I have the form submission correctly displaying on a modal popup; however, when I try to test submission, I get forwarded to the bot detection message. I've tried using different names, different legitimate e-mail addresses, and different messages with no bot buzzwords. I'm also making sure to use our live (inside our intranet) test website so I'm not just trying to launch the form from the server files.
I also haven't changed the settings in the Bot Protection area of the php file:
/*-------------------------------------------------
Bot Protection
---------------------------------------------------*/
if( isset( $submits[ $prefix . 'botcheck' ] ) ) {
$botpassed = true;
}
if( !empty( $submits[ $prefix . 'botcheck' ] ) ) {
$botpassed = false;
}
if( $botpassed == false ) {
echo '{ "alert": "error", "message": "' . $message['error_bot'] . '" }';
exit;
}
Is this an issue with the sensitivity of the botcheck, or could my coding me wrong?
