-
Bug
-
Resolution: Won't Fix
-
Low
-
20
-
Minor
-
7
-
After migrating from on-premise to Cloud, large images doesn't render properly in pages on Cloud.
This image is too large to apply effects. Please make it smaller (less than 4,000,000px in total dimensions) and try again.
Workaround:
- Run below SQL on the on-premise to get all the pages in which there are large images which has effects enabled on them.
select spaces.spacename, parent_content.title AS "Page Title", content.title AS "Image Title", i.height, i.width, i.height * i.width AS "Pixels Size", ROUND(contentproperties.longval/1024/1024, 2) AS "file_size (MB)" from content inner join contentproperties on content.contentid = contentproperties.contentid inner join content parent_content on content.pageid = parent_content.contentid inner join spaces on content.spaceid = spaces.spaceid inner join bodycontent on content.pageid = bodycontent.contentid inner join imagedetails i on content.contentid = i.attachmentid where content.contenttype = 'ATTACHMENT' and contentproperties.propertyname = 'FILESIZE' and parent_content.content_status = 'current' and content.prevver is NULL and bodycontent.body like '%ac:image ac:queryparams="effects=%' and contentproperties.contentid in (select contentproperties.contentid from contentproperties where stringval like 'image%') and i.height * i.width >= 4000000 order by contentproperties.longval desc;
- After the migration, go to Cloud instance, and open the page in edit mode, click on the broken image in edit mode and choose "Properties" then remove the effect (change it to none instead of having a border).
- is related to
-
CONFCLOUD-73507 Images are broken and not displaying correctly on Cloud instance after migrating from on-premise
-
- Closed
-
- relates to
-
CONFCLOUD-81305 Images are broken and not displaying correctly on Cloud instance after migrating from on-premise
-
- Gathering Impact
-
- mentioned in
-
Page Failed to load
-
Page Failed to load
-
Page Failed to load
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...