Expand my Community achievements bar.

Don’t miss the AEM Skill Exchange in SF on Nov 14—hear from industry leaders, learn best practices, and enhance your AEM strategy with practical tips.
SOLVED

AEM 6.3 - Automatic download from DAM via link.

Avatar

Level 4

Is there an easy way to automatically download a file (like a PDF) using the DAM's location in a anchor tag? For example:

 

<a href="my-site-stage/assetdetails.html/content/dam/tweed/pdf-files/TEST%20PDF.pdf">

Download instructions here

</a>

 

It seems like something that would be fairly common but clicking the link takes me to the DAM itself, where I have to first login and then find the donwload button and click it.

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Level 9

hello, 

 

your path should be constructed to actual resource /content/dam/tweed/pdf-files/TEST%20PDF.pdf  (not prefixing my-site-stage/assetdetails.html which is for author mode) for public facing page (an i believe you want these files to be available on public. else, you need to put more constraint while generating link)

 

note: there are more stuff you can do when it comes to caching and supporting big file size.

 

thanks!!

View solution in original post

3 Replies

Avatar

Correct answer by
Level 9

hello, 

 

your path should be constructed to actual resource /content/dam/tweed/pdf-files/TEST%20PDF.pdf  (not prefixing my-site-stage/assetdetails.html which is for author mode) for public facing page (an i believe you want these files to be available on public. else, you need to put more constraint while generating link)

 

note: there are more stuff you can do when it comes to caching and supporting big file size.

 

thanks!!

Avatar

Administrator
@Pawan-Gupta, thank you for answering. Keep it up.


Kautuk Sahni