Captcha gives error while code is filled-in correctly
Permalink
I have made a new site in concrte5 with a registration form with captcha enabled. However, when posting the registration i get the error "Invalid captcha code....", while the code entered machtches the images correctly.
It seems that the posted code ($_REQUEST[$fieldName]) does not match the session variable ($_SESSION['securimage_code_value']), which should be the same (as i understand from the file libraries/3rdparty/securimage/securimage.php). These two codes are different, causing $this->securimage->check($_REQUEST[$fieldName]) to return false.
I can't figure out why the codes don't match, does anybody have a clue where it goes wrong? Thanks a lot!
It seems that the posted code ($_REQUEST[$fieldName]) does not match the session variable ($_SESSION['securimage_code_value']), which should be the same (as i understand from the file libraries/3rdparty/securimage/securimage.php). These two codes are different, causing $this->securimage->check($_REQUEST[$fieldName]) to return false.
I can't figure out why the codes don't match, does anybody have a clue where it goes wrong? Thanks a lot!
My captcha code is different to the session captcha code..?