Fungování této stránky je z důvodu údržby dočasně omezeno. Pokud žádný článek nápovědy nevyřeší váš problém a potřebujete se zeptat na další řešení, napište nám na Twitter @FirefoxSupport nebo Reddit /r/firefox.

Prohledat stránky podpory

Vyhněte se podvodům. Za účelem poskytnutí podpory vás nikdy nežádáme, abyste zavolali nebo poslali SMS na nějaké telefonní číslo nebo abyste sdělili své osobní údaje. Jakékoliv podezřelé chování nám prosím nahlaste pomocí odkazu „Nahlásit zneužití“.

Zjistit více

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 odpovědi
  • 9 má tento problém
  • 1 zobrazení
  • Poslední odpověď od 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!

Zvolené řešení

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

Přečíst dotaz v kontextu 👍 2

Všechny odpovědi (2)

more options

Zvolené řešení

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.