Captcha Verification Failed!

Viewing 10 posts - 1 through 10 (of 10 total)
#50187

Joe
Member

I love the plugin but the file will not download after using captcha. I have everything set up properly but it always says “Captcha Verification Failed!”

#50270

Jass
Moderator

Hi
May be its conflicting with other plugins or theme. Please try deactivating other plugins/change theme and try again.
Thank you.

#50301

Joe
Member

All plugins disabled and theme changed and still same issue. Please advise

#50328

Jass
Moderator

Hi,
Would you mind providing us with login credentials so we can take a closer look? To do this, you can make a post with the following info:

– Link to your site
– WordPress Admin username / password

Don’t forget to select Set as private reply. This ensures your information is only visible to our staff.

Thank you

#50766

Joe
Member
This reply has been marked as private.
#51050

Joe
Member

any update please?

#51094

Jass
Moderator

hi,
Sorry for your trouble.
Can you please provide me your ftp credentials? Or can you remove the plugin directly from ftp and install it again. So that i can check on the issue and bring a solution as soon as possible.
Thank you sir for your co-operation.

#51159

Joe
Member
This reply has been marked as private.
#51175

Jass
Moderator

hi,
I had to replaced a code by

    if (isset($_POST["reCaptchaVerify"])) {
        $retraw = file_get_contents("https://www.google.com/recaptcha/api/siteverify?secret=" . get_option('_wpdm_recaptcha_secret_key') . "&response=" . $_POST['reCaptchaVerify'] . "&remoteip=" . $_SERVER['REMOTE_ADDR']);
        $ret = json_decode($retraw, true);

// $ret = remote_post(‘https://www.google.com/recaptcha/api/siteverify’, array(‘secret’ ► get_option(‘_wpdm_recaptcha_secret_key’), ‘response’ ► $_POST[‘reCaptchaVerify’], ‘remoteip’ ► $_SERVER[‘REMOTE_ADDR’]));

        if ($ret["success"] == true) {
            $_SESSION["_wpdm_unlocked_" . $file["ID"

= 1;
update_post_meta($file["ID"], "__wpdmkey_" . $key, 3);
$download_url = wpdm_download_url($file, "_wpdmkey={$key}");
$data["downloadurl"] = $download_url;
} else {
$data['error'] = __("Captcha Verification Failed!", "wpmdpro");
}
header("Content-type: application/json");
echo json_encode($data);
die();
}

And its working.
Can you try again?
Thank you

#51186

Joe
Member

Its working now thanks!

Viewing 10 posts - 1 through 10 (of 10 total)

The topic ‘Captcha Verification Failed!’ is closed to new replies.