With some help from
Shane and Peter and some of my own notes, I have managed to alter a few files in Fireboard to get CAPTCHA working... more or less.
It is not throwing any errors. I am seeing the CAPTCHA image.
When I enter the characters, I get a security check failed message.
In post.php -- replace
if (empty($fb_authorname))
{
echo _POST_FORGOT_NAME;
}
else if (empty($subject))
{
echo _POST_FORGOT_SUBJECT;
}
else if (empty($message))
{
echo _POST_FORGOT_MESSAGE;
}
else
{
with:
if ($my->id==0) {
include ($mosConfig_absolute_path.'/administrator/components/com_securityimages/server.php'

;
$checkSecurity = checkSecurityImage($security_refid, $security_try);
}
if (empty($fb_authorname))
echo _POST_FORGOT_NAME;
else if (empty($subject))
echo _POST_FORGOT_SUBJECT;
else if (empty($message))
echo _POST_FORGOT_MESSAGE;
if ($my->id==0 && $checkSecurity==false)
echo "Security check failed!"; // replace this with whatever text you would like your user to see.
else {
additionally, in fb_write.html.php add
id==0) {
include ($mosConfig_absolute_path.'/administrator/components/com_securityimages/client.php'

; ?>