搜尋 Mozilla 技術支援網站

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

Learn More

Website load with empty image

  • 1 回覆
  • 0 有這個問題
  • 18 次檢視
  • 最近回覆由 cor-el

more options

Our servers are using 3 Host. Inthere, 2 Servers are running IIS Code Website, and 1 Server are runs Storage which contains image and clip mp4. All of Server are running with one DNS name and Alpha SSL was installed in 3 Server. Acting: Client access 2 Servers run IIS Web Code. Then, IIS Server call Storage to reply image, clip into Site component to reply to Client full Webpage. But, when we use Firefox to access page, image and clip could not load. They are empty. Website is full of text with no image. Otherwise, when we use Chrome, Sarafi (smartphone), UC Browser to access page... Website load is OK with full image and clip. Then, we trace network load in Firefox, we found that all of function that call https://image.[domain]... could not work well. Error 404 loading. But, Chrome loaded slower than Firefox, so it could do well. We had recognized Firefox could not call https again with the same host in the same DNS. TCP call other Server in the same DNS had bypassed with certifier SSL. DEV can exam directly via Website https://congan.com.vn, you'll see website with no image... Because it could not parse, could not make connection again with other host in the same DNS had SSL connection. It's means, IIS congan.com.vn could call image.congan.com.vn via https.

Our servers are using 3 Host. Inthere, 2 Servers are running IIS Code Website, and 1 Server are runs Storage which contains image and clip mp4. All of Server are running with one DNS name and Alpha SSL was installed in 3 Server. Acting: Client access 2 Servers run IIS Web Code. Then, IIS Server call Storage to reply image, clip into Site component to reply to Client full Webpage. But, when we use Firefox to access page, image and clip could not load. They are empty. Website is full of text with no image. Otherwise, when we use Chrome, Sarafi (smartphone), UC Browser to access page... Website load is OK with full image and clip. Then, we trace network load in Firefox, we found that all of function that call https://image.[domain]... could not work well. Error 404 loading. But, Chrome loaded slower than Firefox, so it could do well. We had recognized Firefox could not call https again with the same host in the same DNS. TCP call other Server in the same DNS had bypassed with certifier SSL. DEV can exam directly via Website https://congan.com.vn, you'll see website with no image... Because it could not parse, could not make connection again with other host in the same DNS had SSL connection. It's means, IIS congan.com.vn could call image.congan.com.vn via https.
附加的畫面擷圖

所有回覆 (1)

more options

Those image are retrieved via a secure HTTPS and that gives a 404 error in Firefox as you can see in the Network Monitor.

The images load for me via an open http:// connection.


This bookmarklet makes the 404 images appear for me.

javascript:void(document.querySelectorAll('img[src^="https://image.congan.com.vn"').forEach(e=>{e.setAttribute('src',e.getAttribute('src').replace(/^https:/,'http:'))}))