Latox
Latox

Reputation: 4705

PHP, HTTPS, Form submit

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

Answers (2)

Latox
Latox

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

jlindenbaum
jlindenbaum

Reputation: 1881

Your form action is posting to http not https

// edit, just saw your comment. sorry.

Upvotes: 1

Related Questions