- This topic has 9 replies, 2 voices, and was last updated 9 years, 3 months ago by
Joe.
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!”
Hi
May be its conflicting with other plugins or theme. Please try deactivating other plugins/change theme and try again.
Thank you.
All plugins disabled and theme changed and still same issue. Please advise
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
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.
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
The topic "Captcha Verification Failed!" is closed to new replies.