views:

75

answers:

2

Hi everyone,

reCAPTCHA (Zend_Service_ReCaptcha) is not working in IE 8 on our site.

Look at this web site. Does anyone know why? It is working elsewhere including FF,Opera, etc. Thanks a lot!

+2  A: 

It is an https page, and the images and other items for reCaptcha are delivered via http and get blocked.

Oded
Thanks for quick answer but, why it is working in other browsers ?
Michal Drozd
however you are right, i tried HTTP and it is working
Michal Drozd
A: 

Is there anyway to enable HTTPS for reCAPTCHA ?

I fixed it: Just added array('ssl' => true) to params like this:

$recpatcha = new Zend_Service_ReCaptcha(
                '6Jd_ArXXXXXXXXXtdsT7zC69uy_X8rKcJWlMq9eK',
                '6Jd_AXXXXXXXXXXv_n5lMQ3OasSoHufjWndQ59ny',
                array('ssl' => true),
                array ('theme' => 'white', 'custom_translations' => array(
                    'instructions_visual' => gettext("Opíšte dvě slová"),
                    'instructions_audio' => gettext("Opíšte dvě slová")));
Michal Drozd