Getting captcha to work

I am trying to get my captcha to work with my login but it seems to log in without the captcha being filled.

My code
[php]
if (!is_user_logged_in()){
echo wp_login_form();
if( function_exists( ‘cptch_display_captcha_custom’ ) )
{
echo “”;
echo cptch_display_captcha_custom();
}
}
else
{
global $current_user;
get_currentuserinfo();
echo '

Welcome ';
echo bp_loggedin_user_fullname();
echo ‘

’;
echo ‘
’;
echo get_avatar( $current_user->ID, 80 );
echo ‘
’;
echo ‘<a href="’;
echo (bp_loggedin_user_domain() . “profile” . “/” . “edit”);
echo ‘">Update your Profile
’;
echo ‘<a href="’;
echo (bp_loggedin_user_domain()) . “activity” . “/”;
echo ‘">Update your Status
’;
echo ‘Edit Account Settings
’;
echo ‘<a href="’;
echo (bp_loggedin_user_domain()) . “messages” . “/”;
echo ‘">Check your Inbox
’;
echo '
Logout ';
echo ‘Dashboard’;
}[/php]

The instructions add that “It is necessary to add the lines in the function of check of the entered data (where it is checked what the user enters and if everything is correct the mail will be sent)”
[php]if( function_exists( ‘cptch_check_custom_form’ ) && cptch_check_custom_form() !== true ) echo “Please complete the CAPTCHA.”[/php]

But I can not for the life of me figure out where that is.

I am having the exact problem and also can’t get anything display except a small bit of text that says “captcha”.

Sponsor our Newsletter | Privacy Policy | Terms of Service