Reputation: 4705
We have converted our site from HTTP to HTTPS, and when our login forms are being submitted, we are getting the message:
"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?"
Our cookies are not being set in PHP and the page is basically just refreshing.
What do we need to do to amend our forms so that they work with HTTPS?
Upvotes: 1
Views: 624
Reputation: 20343
Check page source. If it contains something like:
<form action="http://yoursite.com . . .
Then it sends the user to the nonencrypted site.
Upvotes: 5