How to download Confluence Site Logo stored in Confluence
Platform Notice: Data Center Only - This article only applies to Atlassian products on the Data Center platform.
Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Except Fisheye and Crucible
Summary
How to download or find the Confluence site logo?
Environment
7.X,6.13.X
Diagnosis
In Confluence, we don't have any option to download the site logo and need to use other methods to achieve this.
Cause
No option to download the Confluence site logo.
Solution
We can achieve this by following two methods
1) Directly from your browser
In this method, you would need to inspect the dashboard page and move your cursor on the site logo. You would get the corresponding link to the site logo that you can open in the browser to download the image. Typically it looks like below
1
https://<Confluence-base-url/download/attachments/327682/atl.site.logo?version=2&modificationDate=1591112438767&api=v2%22
2) From the file system
Generally all the site-logos, user images are stored in a nonspaced folder in the attachment directory. To find out the site logs, please run following query first on your old confluence instance
1
select contentid from content where title='atl.site.logo' and prevver is null;
Now go to your attachment folder on your server
cd /attachments/ver003/nonspaced
and then run following find command to find the exact path
find ../nonspaced/ -name 12582914
In place of 12582914, use the contentid that you got from the above SQL query. You would need to copy this image and rename this image as jpg/png to verify it.
Was this helpful?