OK, to pinpoint what is failing validation, find the following code:
if ($WAFV_Errors != "") {
PostResult($WAFV_Redirect,$WAFV_Errors,"test");
}
and change it to:
if ($WAFV_Errors != "") {
die($WAFV_Errors,"|".$_SESSION["captcha_Contact_me_group_Security_code"]."|".$_SESSION["random_answer"]);
PostResult($WAFV_Redirect,$WAFV_Errors,"test");
}
then send a link to your page. this will help me see what is going wrong for troubleshooting.
also, for the captcha to function properly,


