• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: reCAPTCHA not appearing on SSL pages

reCAPTCHA not appearing on SSL pages 13 years 1 week ago #13555

I have an SSL secured form (RSForm Pro) on which the reCAPTCHA is not appearing. If I visit the form using http:// instead of https:// it shows up fine.

Any ideas?

Thanks.
The administrator has disabled public write access.

Re:reCAPTCHA not appearing on SSL pages 13 years 1 day ago #13636

*BUMP*
The administrator has disabled public write access.

Re:reCAPTCHA not appearing on SSL pages 12 years 11 months ago #13655

Same issue here.
The administrator has disabled public write access.

Re:reCAPTCHA not appearing on SSL pages 12 years 11 months ago #13656

Found a fix with help of this article:
code.google.com/apis/recaptcha/docs/display.html

Edit this file:
/administrator/components/com_rsticketspro/helpers/recaptcha/recaptchalib.php

Make your lines 38 and 39 look like mine:
define("RST_RECAPTCHA_API_SERVER", "https://www.google.com/recaptcha/api");
define("RST_RECAPTCHA_API_SECURE_SERVER", "http://www.google.com/recaptcha/api");


Hope that helps!

Edit: Whoops - just realized I posted this in RSForm forum, not RSTickets - oh well, maybe my code will still be helpful to someone.
Last Edit: 12 years 11 months ago by nate.covington.
The administrator has disabled public write access.

Re:reCAPTCHA not appearing on SSL pages [SOLVED] 12 years 11 months ago #13679

reCaptcha was taken over by Google a while back and their server urls, as the post above explains have changed to the Google urls.

Open up your relib.php, which resides inside
plugins/system/rsfrecaptcha

and change these lines 41, 42, 43, which look like:
define("RSFP_RECAPTCHA_API_SERVER", "http://api.recaptcha.net");
define("RSFP_RECAPTCHA_API_SECURE_SERVER", "https://api-secure.recaptcha.net");
define("RSFP_RECAPTCHA_VERIFY_SERVER", "api-verify.recaptcha.net");

To
define("RSFP_RECAPTCHA_API_SERVER", "http://www.google.com/recaptcha/api");
define("RSFP_RECAPTCHA_API_SECURE_SERVER", "https://www.google.com/recaptcha/api");
define("RSFP_RECAPTCHA_VERIFY_SERVER", "www.google.com");

This has been tried and tested, RS Joomla should update their script.

I hope this helps

Derek Buntin
Last Edit: 12 years 11 months ago by derek.buntin.
The administrator has disabled public write access.

Re:reCAPTCHA not appearing on SSL pages [SOLVED] 12 years 11 months ago #13705

  • andreic
  • andreic's Avatar
  • OFFLINE
  • RSJoomla! Official Staff
  • Posts: 733
  • Thank you received: 60
Hello,

You can also refer to the following article from the product's documentation:

www.rsjoomla.com/customer-support/docume...ReCAPTCHA%20SSL.html
Please note: my help is not official customer support. To receive your support, submit a ticket by clicking here
Regards,
RSJoomla! Development Team
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!