• 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: How do I force HTTPS on a form?

How do I force HTTPS on a form? 13 years 1 week ago #17185

  • Phodel
  • Phodel's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 2
I would like to make my forms secure as can be therefore I would like to force the form to use https rather than http. How can I achieve this?
The administrator has disabled public write access.

Re: How do I force HTTPS on a form? 13 years 1 week ago #17192

  • alexp
  • alexp's Avatar
  • OFFLINE
  • RSJoomla! Official Staff
  • Posts: 2253
  • Thank you received: 180
The SSL option can be enabled directly from within the menu item configuration parameters (standard).

As a workaround, you can also use the following code, placed in the PHP Scripts > Scripts called on form display area:
if($_SERVER['SERVER_PORT'] != '443') 
{ 
header('Location: https://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']); exit();
} 
Please note: my help is not official customer support. To receive your support, submit a ticket by clicking here
Regards,
RSJoomla! Development Team
Last Edit: 13 years 1 week ago by alexp.
The administrator has disabled public write access.
The following user(s) said Thank You: lthompson

Re: How do I force HTTPS on a form? 7 years 4 days ago #38142

  • rakeshy
  • rakeshy's Avatar
  • OFFLINE
  • Expert Boarder
  • Posts: 97
  • Thank you received: 3
When using thumbnails (image tag) in the form, the images are loaded through http, is there a way to have it load through https?
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!