Reputation: 4705
We have recently switched to HTTPS and when submitting one of our forms, Firefox pops up:
Although this page is encrypted, the information you have entered is to be sent over an unencrypted connection and could easily be read by a third party.
Are you sure you want to continue sending this information?
After saying Yes, the form submits and the page just reloads, the information isn't actually posting?
Am I missing something?
Upvotes: 2
Views: 2516
Reputation: 4705
Basically, it means:
<form action="http://www..."
has to be changed to
<form action="https://www..."
As we are not submitting to a secure URL.
Upvotes: 2
Reputation: 1881
Your form action is posting to http not https
// edit, just saw your comment. sorry.
Upvotes: 1