Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Website load with empty image

  • 1 ప్రత్యుత్తరం
  • 0 ఈ సమస్యలు కలిగి ఉన్నాయి
  • 30 వీక్షణలు
  • చివరి సమాధానమిచ్చినది 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:'))}))