A knowledge article with a large number of images does not load all the imagesIssue A knowledge article contains multiple images. Some of these load, but some do not. If you reload the individual image it loads correctlyCauseCheck if the HTTP traffic for references to the images. If the HTTP requests result in HTTP201 the images will not load. The page is constructed correctly from a HTML perspective, all the images are referenced. If you check the client code you can see the references of the images are correct. The images are stored in a database and are retrieved using sys_attachement. When it goes wrong this happens with the request: Request URL: /sys_attachment.do?sys_id=1cbb451d1b07905084ac3113dd4bcb4c Status Code: HTTP 202 So the page generates the correct URL for the image but the answer is not what it expects. It should send back HTTP 200 which means OK. HTTP 202 means that the request has been accepted for processing but the processing has not been completed. So it never gets back an image and loads the page the way you see it. This is happening because there are a lot of images being requested at the same time resulting in multiple request to the server to load the images. Requests come in quicker than they can be processed. As a result, we have too many requests for the same session waiting. This leads to new requests being returned with the 202 return code.ResolutionThe best way to resolve this by avoiding these requests. Looking at the article I think the images are pasted in. This works in small numbers but we recommend you avoid this when dealing with larger number of images. In order to solve this issue, we recommend inserting the image using the Insert/Edit image toolbar.