Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

removed design folder in etc folder

Avatar

Level 2

someone please tell me the reason why design folder has removed in etc folder in AEM 6.4.. Now where can we create css and js files for page..

1 Accepted Solution

Avatar

Correct answer by
Employee Advisor

Hello,

The new location(s) of  /etc/designs/default are:

- /libs/settings/wcm/designs/default or

- /apps/settings/wcm/designs/default

For any Designs that are managed in SCM, and not written to at run-time via Design Dialogs.

1. Copy the designs from the Previous Location to the New Location (/apps).

2. Convert any CSS, JavaScript and static resources in the Design to a Client Library with allowProxy = true.

3. Update references to the Previous Location in the cq:designPath property.

4. Update any Pages referencing the Previous Location to use the new Client Library category (this requires updating Page implementation code).

5. Update AEM Dispatcher rules to allow the serving of Client Libraries via the /etc.clientlibs/.. proxy servlet.

For any Designs that NOT managed in SCM, and modified run-time via Design Dialogs.

Do not move author-able Designs out of /etc.

Please refer to official docs [1] and [2] for more details.

[1]Adobe Experience Manager Help | Repository Restructuring in AEM 6.4

[2]Adobe Experience Manager Help | Common Repository Restructuring in AEM 6.4 

View solution in original post

2 Replies

Avatar

Correct answer by
Employee Advisor

Hello,

The new location(s) of  /etc/designs/default are:

- /libs/settings/wcm/designs/default or

- /apps/settings/wcm/designs/default

For any Designs that are managed in SCM, and not written to at run-time via Design Dialogs.

1. Copy the designs from the Previous Location to the New Location (/apps).

2. Convert any CSS, JavaScript and static resources in the Design to a Client Library with allowProxy = true.

3. Update references to the Previous Location in the cq:designPath property.

4. Update any Pages referencing the Previous Location to use the new Client Library category (this requires updating Page implementation code).

5. Update AEM Dispatcher rules to allow the serving of Client Libraries via the /etc.clientlibs/.. proxy servlet.

For any Designs that NOT managed in SCM, and modified run-time via Design Dialogs.

Do not move author-able Designs out of /etc.

Please refer to official docs [1] and [2] for more details.

[1]Adobe Experience Manager Help | Repository Restructuring in AEM 6.4

[2]Adobe Experience Manager Help | Common Repository Restructuring in AEM 6.4 

Avatar

Level 2

Thank You Vish for sharing useful information..