https rewriting is breaking external forms in admin
-
We have a form in admin, and the form action is getting rewritten to be // instead of https://. This breaks the form and in Chrome and FF browsers strangely changes the form behavior to make a GET request with no parameters. I don’t think protocol relative urls work in form action attributes.
- You should not be overriding form actions
- You probably shouldn’t be overriding urls in admin side at all
- You are changing https:// to // which is a security issue, you are lowering security on sites that don’t use ssl. If the goal is to avoid mixed content errors, you should only be filtering http://.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘https rewriting is breaking external forms in admin’ is closed to new replies.