Latox
Latox

Reputation: 4705

Converted from HTTP to HTTPS... errors & log in forms not working - PHP?

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

Answers (1)

vbence
vbence

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

Related Questions