Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Recently migrated from mediawiki to confluence 5.1 where the images did not get migrated. Need a simple way to get list of confluence pages, image name/info so that I can update/attach the confluence pages with the images. I did come across https://bobswift.atlassian.net/wiki/display/GINT/How+to+test+for+invalid+links+and+images+on+Confluence+pages but it seems that quite a fews steps are involved.
Thanks
Hi Mike,
This might be a bit tricky. I was able to create this SQL query for you which will show all pages that have a image attachment.
select a.title as image_name, c.title as page_name, s.spacename as space_name, a.contenttype from attachments a join content c on a.pageid=c.contentid join spaces s on c.spaceid=s.spaceid where a.contenttype like 'image%';
This query will show the image name, page name, space name and content type. With this information you can go to the page and attach the file again :)
Cheers,
Rodrigo
Hi Mike,
Do my answer helped you? if yes, feel free to check it as answered :)
Cheers!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.