搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

Resend confirmation dialog will not stop popping up, despite following instructions

  • 2 回覆
  • 7 有這個問題
  • 374 次檢視
  • 最近回覆由 aciaroch

more options

I have a website that performs a reload() of a page periodically. Despite all that I've tried, I cannot keep the following dialog from popping up in Firefox: "To display this page, Firefox must send information that will repeat any action (such as a search or order confirmation) that was performed earlier."

I have tried the following: 1 - implementing post.redirect.get on the web page 2.- Going to Tools->Options->Advanced and unchecking/checking the "Warn me when websites try to redirect or reload the page" checkbox (it was already unchecked, but I tried it both ways just in case). 3 - going to about:config and setting browser.sessionstore.postdata to 1

NONE of these have resolved the problem. Any ideas?

I have a website that performs a reload() of a page periodically. Despite all that I've tried, I cannot keep the following dialog from popping up in Firefox: "To display this page, Firefox must send information that will repeat any action (such as a search or order confirmation) that was performed earlier." I have tried the following: 1 - implementing post.redirect.get on the web page 2.- Going to Tools->Options->Advanced and unchecking/checking the "Warn me when websites try to redirect or reload the page" checkbox (it was already unchecked, but I tried it both ways just in case). 3 - going to about:config and setting browser.sessionstore.postdata to 1 NONE of these have resolved the problem. Any ideas?

被選擇的解決方法

If you've reached that page via sending POST data in a form then you may not be able to do anything about this.
GET data appended to the URL (location bar) usually doesn't pose any problems, but if Firefox needs to send POST data from a possibly hidden form then Firefox will always ask for confirmation.
If you can reach that page directly then you can try that.

從原來的回覆中察看解決方案 👍 1

所有回覆 (2)

more options

選擇的解決方法

If you've reached that page via sending POST data in a form then you may not be able to do anything about this.
GET data appended to the URL (location bar) usually doesn't pose any problems, but if Firefox needs to send POST data from a possibly hidden form then Firefox will always ask for confirmation.
If you can reach that page directly then you can try that.

more options

Thanks, Cor-el, that actually helped a lot. I poked through the login process, and found one form using POST unecessarily (no data was being sent, it was just classified 'method=POST').

Once I removed that definition, everything works. Seems kind of silly that this is only an issue with Firefox, and not Chrome, Safari, or IE.