2

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?

2
  • I have fixed this, I had to amend the form action to https. Commented Mar 21, 2011 at 1:25
  • You may want to delete this question if you have solved it, or post your answer as an answer. Commented Mar 21, 2011 at 1:28

2 Answers 2

2

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.

Sign up to request clarification or add additional context in comments.

Comments

1

Your form action is posting to http not https

// edit, just saw your comment. sorry.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.