I am creating a site for a client that requires a secure voting form. In order to use SSL, I have enabled SSL on Joomla 1.5.15, enabled SSL in the Recaptcha plugin for my form, and need assistance with where to put the SSL Recaptcha script so there will not be any SSL errors and SSL will work with chronoforms 3.1.RC5.5. According to Recaptcha,
Can you tell me where to place this code?
Joomla 1.5.15 SSL enabled
Chronoforms 3.1 RC5.5
https://sitesofjoomla.com/contact-us.html
Thank You,
Bob Cameron
In order to avoid getting browser warnings, if you use reCAPTCHA on an SSL site, you should replace http://api.recaptcha.net with https://api-secure.recaptcha.net. For example:
<script type="text/javascript"
src="https://api-secure.recaptcha.net/challenge?k=<your_public_key>">
</script>
<noscript>
<iframe src="https://api-secure.recaptcha.net/noscript?k=<your_public_key>"
height="300" width="500" frameborder="0"></iframe><br>
<textarea name="recaptcha_challenge_field" rows="3" cols="40">
</textarea>
<input type="hidden" name="recaptcha_response_field"
value="manual_challenge">
</noscript>
Can you tell me where to place this code?
Joomla 1.5.15 SSL enabled
Chronoforms 3.1 RC5.5
https://sitesofjoomla.com/contact-us.html
Thank You,
Bob Cameron