Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

Website load with empty image

  • 1 trả lời
  • 0 gặp vấn đề này
  • 21 lượt xem
  • Trả lời mới nhất được viết bởi 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.
Đính kèm ảnh chụp màn hình

Tất cả các câu trả lời (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:'))}))