搜尋 Mozilla 技術支援網站

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

Learn More

Firefox only downloads PDF successfully first time after cache clear

  • 2 回覆
  • 0 有這個問題
  • 22 次檢視
  • 最近回覆由 brendan8

more options

I'm developing a PHP Symfony based website powered by nginx-full 1.18.0-6ubuntu14.4, one of the functions is to allow people to download a PDF invoice.

When it fails Firefox shows an alert "Downloading (Failed) The browser application closed unexpectedly."

On my linux desktop; when I use Chromium 114.0.5735.198 this functions works 100% of the time. when I use Firefox 114.0.2 (64-bit) the PDF download only works ONCE after that the download never completes and I'm left with a partial/corrupted 75.7KiB file named filename.Br-neZWO.pdf.part etc.

I have discovered that if I clear the firefox cache I can perform one successful download again. or I can restart Nginx and again Firefox will perform one successful download again.

I've tried altering many Nginx settings, cache, gzip, sendfile etc with no effect. It might be Nginx related but it does not effect Chrome at all which is why I've started this ticket.

Any help in debugging this would be greatly appreciated.

I'm developing a PHP Symfony based website powered by nginx-full 1.18.0-6ubuntu14.4, one of the functions is to allow people to download a PDF invoice. When it fails Firefox shows an alert "Downloading (Failed) The browser application closed unexpectedly." On my linux desktop; when I use Chromium 114.0.5735.198 this functions works 100% of the time. when I use Firefox 114.0.2 (64-bit) the PDF download only works ONCE after that the download never completes and I'm left with a partial/corrupted 75.7KiB file named filename.Br-neZWO.pdf.part etc. I have discovered that if I clear the firefox cache I can perform one successful download again. '''or''' I can restart Nginx and again Firefox will perform one successful download again. I've tried altering many Nginx settings, cache, gzip, sendfile etc with no effect. It might be Nginx related but it does not effect Chrome at all which is why I've started this ticket. Any help in debugging this would be greatly appreciated.

被選擇的解決方法

SOLVED: In our code there was a missing "exit" after download function. Chrome was obviously more tolerant for some reason. Specifically after dompdf download function ( $dompdf->stream() ) we added exit; which made all the difference.

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

所有回覆 (2)

more options

I should of also mentioned the problem persists even using safe-mode so its not extension related.

more options

選擇的解決方法

SOLVED: In our code there was a missing "exit" after download function. Chrome was obviously more tolerant for some reason. Specifically after dompdf download function ( $dompdf->stream() ) we added exit; which made all the difference.

由 brendan8 於 修改