この会話は、活動がないためロックされています。新しい投稿を作成してください。
この会話は、活動がないためロックされています。新しい投稿を作成してください。
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?
解決済! 解決策の投稿を見る。
トピックはコミュニティのコンテンツの分類に役立ち、関連コンテンツを発見する可能性を広げます。
表示
返信
いいね!の合計
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!
表示
返信
いいね!の合計
表示
返信
いいね!の合計
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