搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

Your new secure content feature in the subject bar blocks my reCAPTCHA on my site's login page. That page is SSL encrypted and nothing should block reCAPTCHA.

  • 2 回覆
  • 9 有這個問題
  • 1 次檢視
  • 最近回覆由 demitry77

more options

After the latest update of your browser, the reCAPTCHA (a Google product now) gets blocked. There is no way to safe-list it because anytime the page reloads, the reCAPTCHA is blocked again. This reCAPTCHA uses an API and an Iframe but it is directly from Google. This is a terrible feature for someone who owns a web site as well as for an end-user who cannot figure out why they are not able to log-in.

PS: I also have the NoScript add-on, however, this should have nothing to do with the aforementioned issue. Running Win 7 with the latest version of Firefox. Please help!

After the latest update of your browser, the reCAPTCHA (a Google product now) gets blocked. There is no way to safe-list it because anytime the page reloads, the reCAPTCHA is blocked again. This reCAPTCHA uses an API and an Iframe but it is directly from Google. This is a terrible feature for someone who owns a web site as well as for an end-user who cannot figure out why they are not able to log-in. PS: I also have the NoScript add-on, however, this should have nothing to do with the aforementioned issue. Running Win 7 with the latest version of Firefox. Please help!

被選擇的解決方法

Is this an option for you:

In order to avoid getting browser warnings when you use reCAPTCHA on an SSL site, you should replace http://www.google.com/recaptcha/api with https://www.google.com/recaptcha/api when you request a challenge.

Source: reCAPTCHA: Tips and Guidelines - reCAPTCHA — Google Developers

從原來的回覆中察看解決方案 👍 2

所有回覆 (2)

more options

選擇的解決方法

Is this an option for you:

In order to avoid getting browser warnings when you use reCAPTCHA on an SSL site, you should replace http://www.google.com/recaptcha/api with https://www.google.com/recaptcha/api when you request a challenge.

Source: reCAPTCHA: Tips and Guidelines - reCAPTCHA — Google Developers

more options

The following was defined in the reCAPTCHA includes/functions/recaptchalib.php file

define("RECAPTCHA_API_SERVER", "http://www.google.com/recaptcha/api"); define("RECAPTCHA_API_SECURE_SERVER", "https://www.google.com/recaptcha/api");

I added the "s" to http in RECAPTCHA_API_SERVER and everything works great now. Thank you for your prompt response and for resolving this issue.