i have a site in codeigniter,and that site working perfectly on http.
http
My client moved the site to https.
https
Then now when user registr
For SSL (https) use:
echo recaptcha_get_html($publickey,true);
rather than:
echo recaptcha_get_html($publickey);
This is because recaptcha_get_html() in recaptchalib.php (which gets the distorted text image) defaults to http unless you tell it otherwise.