Skip Menu |

This queue is for tickets about the Captcha-reCAPTCHA CPAN distribution.

Report information
The Basics
Id: 90119
Status: open
Priority: 0/
Queue: Captcha-reCAPTCHA

People
Owner: Nobody in particular
Requestors: mas [...] scsy.de
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: 0.97
Fixed in: (no value)



Subject: Recaptcha hidden in current Firefox because of insecure content
Firefox does not show the Recaptcha because of its secure content policy. I was able to fix this by changing the API_SERVER and API_VERIFY_SERVER URLs in reCAPTCHA.pm to https.
Subject: Re: [rt.cpan.org #90119] Recaptcha hidden in current Firefox because of insecure content
Date: Thu, 7 Nov 2013 11:19:28 -0800
To: bug-Captcha-reCAPTCHA [...] rt.cpan.org
From: Fred Moyer <fred [...] redhotpenguin.com>
Did you try setting $use_ssl to 1? =item C<< get_html( $pubkey, $error, $use_ssl, $options ) >> On Thu, Nov 7, 2013 at 7:38 AM, Martin Schmitt via RT <bug-Captcha-reCAPTCHA@rt.cpan.org> wrote: Show quoted text
> Thu Nov 07 10:38:59 2013: Request 90119 was acted upon. > Transaction: Ticket created by MSCHMITT > Queue: Captcha-reCAPTCHA > Subject: Recaptcha hidden in current Firefox because of insecure content > Broken in: 0.97 > Severity: Critical > Owner: Nobody > Requestors: mas@scsy.de > Status: new > Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=90119 > > > > Firefox does not show the Recaptcha because of its secure content policy. I was able to fix this by changing the API_SERVER and API_VERIFY_SERVER URLs in reCAPTCHA.pm to https.
Works: my $captcha = $c->get_html($public_key, undef, 1); I'm not sure, though, what should be used as the 2nd parameter. The default of not passing anything other than the public key has always worked for me.
Subject: Re: [rt.cpan.org #90119] Recaptcha hidden in current Firefox because of insecure content
Date: Thu, 7 Nov 2013 18:51:52 -0800
To: bug-Captcha-reCAPTCHA [...] rt.cpan.org
From: Fred Moyer <fred [...] redhotpenguin.com>
Ok - do you need anything else here or was that sufficient? On Thu, Nov 7, 2013 at 2:26 PM, Martin Schmitt via RT <bug-Captcha-reCAPTCHA@rt.cpan.org> wrote: Show quoted text
> Queue: Captcha-reCAPTCHA > Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=90119 > > > Works: > > my $captcha = $c->get_html($public_key, undef, 1); > > I'm not sure, though, what should be used as the 2nd parameter. The default of not passing anything other than the public key has always worked for me.