As a content author, How can i publish a whole site in AEM 6.5 in one go? I suppose its using the manage publication feature and adding the root page to include subpages?
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
Hi @key-key,
To successfully publish your entire AEM site to all your publishers, and assuming your website is not too large, and assuming that you only have access to the Author you can:
<filter root="/conf/my-site"></filter>
<filter root="/content/cq:tags/my-site"></filter>
<filter root="/content/dam/my-site"></filter>
<filter root="/content/experience-fragments/my-site"></filter>
<filter root="/content/my-site"></filter>
"/conf/my-site"
"/content/cq:tags/my-site"
"/content/dam/my-site"
"/content/experience-fragments/my-site"
"/content/my-site"
Good Luck!
You can replicate entire content hierarchy from here-
Tree Activation is the way to do it in one go. But depends on if the author is given permission to do so.
Another option is to create a package of your site with all dependencies and replicate the package itself from the Package Manager
If it is just content, you can use tree activation option.
But remember the tree activation is no longer under /etc but rather under /libs
Instead the url that you should be using is - http://<HOST>:<PORT>/libs/replication/treeactivation.html
Hi @key-key,
To successfully publish your entire AEM site to all your publishers, and assuming your website is not too large, and assuming that you only have access to the Author you can:
<filter root="/conf/my-site"></filter>
<filter root="/content/cq:tags/my-site"></filter>
<filter root="/content/dam/my-site"></filter>
<filter root="/content/experience-fragments/my-site"></filter>
<filter root="/content/my-site"></filter>
"/conf/my-site"
"/content/cq:tags/my-site"
"/content/dam/my-site"
"/content/experience-fragments/my-site"
"/content/my-site"
Good Luck!
Views
Replies
Total Likes
Views
Replies
Total Likes
You can use Manage Publication or even create package of the entire site on your instance and deploy it on other environments.
The following doc may be helpful in publishing sites/pages:
The following doc may be helpful in creating packages:
Hello @key-key
Tree Activation could be used for the use case you have -
Note - Now tree activation is done from <host:prt>/libs/replication/treeactivation.html
But since you need to publish the whole site, you may want to do via Package method. Just create a package of your site and install it over destination instance.
Hope this helps!
Best Regards,
Nidz