Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

anish-s
anish-s
Offline

Badges

Badges
27

Accepted Solutions

Accepted Solutions
91

Likes Received

Likes Received
312

Posts

Posts
220

Discussions

Discussions
51

Questions

Questions
169

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by anish-s
Customize the badges you want to showcase on your profile
Re: How to create the project set up for AEM Hybrid CMS (Traditional + Headless)? - Adobe Experience Manager 26-01-2022
Hi @srinivas_cherlamcherla ,Refer to this document: https://business.adobe.com/content/dam/dx/us/en/products/experience-manager/sites/headless-content-management-system/pdfs/aem-hybrid-architecture-wp-1-18-19.pdfThis will give you some idea about the architecture and project setup.

Views

89

Like

1

Replies

0
Re: Saml configuration values in sightly for aem6.5 - Adobe Experience Manager 26-01-2022
Hi @srinivas_chann1 ,There are multiple ways to get this done:1. You can create a service, read the values and return it to sling model and then get it into html. Reference URL: https://sourcedcode.com/blog/aem/aem-sling-model-injectors-annotations-reference-guide#OSGiService2. You can directly read the values in JS and then pass it to html. Reference: https://gist.github.com/gabrielwalt/278f8cee870aac7ec619

Views

387

Like

1

Replies

0
Re: AEM as cloud service Dispatcher setting for multi domain . - Adobe Experience Manager 26-01-2022
Hi @chetan001 For multiple domain, you will have different vhost configured as well as different farm file.Verify if you are including the newly created rules-second.any and filters-second.any file in the separate farms. Once include is correct, that rule will trigger.each farm you will find an include something like below: /filter {$include "../filters/filters.any"} /rules {$include "../cache/rules.any"} maintain separate farms for different domains and include these.

Views

413

Like

1

Replies

1
Re: JCR SQL2 Query - find the parent nodes that do not contain children of a type - Adobe Experience Manager 26-01-2022
SELECT folder.* FROM [sling:Folder] AS folder LEFT OUTER JOIN [nt:unstructured] AS childnode ON ISCHILDNODE(childnode, folder) WHERE ISDESCENDANTNODE(folder, "/var/test/links/a@b.com") and folder.[jcr:path] LIKE '/var/test/links/%/%/%/%' AND childnode.[jcr:primaryType] IS NULL AND childnode.[sling:resourceType] IS NULL Check if this works. Assuming:1. your path is constant2. if you run on the root path, which in this case is /var/test/links/a@b.com , you should get all empty folder path until da...

Views

386

Likes

2

Replies

2
Re: JCR SQL2 Query - find the parent nodes that do not contain children of a type - Adobe Experience Manager 25-01-2022
Hi @NitroHazeDev ,By looking at the query, it looks like you might be getting all the folder path in the response in addition to 15. The reason being, here you are considering only nt:unstructured type into childnode variable. When you do "AND childnode.[jcr:primaryType] IS NULL" this will only consider nt:unstructure node and not sling:Folder type. So your result will not consider sling folder type to check your query and have extra paths which is something like:/a@b.com/2022/04/a@b.com/2022/a@...

Views

418

Like

1

Replies

4
Re: Issue with AEM as a Cloud page redirection: Redirecting to /content.html after deploying system generated repository on AEM as a cloud DEV server - Adobe Experience Manager 25-01-2022
Not able to replicate this on local sdk. Local sdk works as expected.Let me share the logs in a while.

Views

244

Like

1

Replies

0
Re: CQ-MSM-LOCKABLES not working only on PROD environment - Adobe Experience Manager 24-01-2022
Hi @TanikaAggarwalAEM ,Looks like the inheritance relation is corrupted on the server. More root cause can be figured out by checking the logs for the time since the issue started. To fix the issue, you can re enable the live copy relationship and it should inherit from the blueprint.Refer to this link if it helps in debugging: https://sourcedcode.com/blog/aem/how-to-re-sync-a-live-copy-language-root-to-a-blueprint-in-aem-msm

Views

84

Likes

2

Replies

0
Re: Issue with AEM as a Cloud page redirection: Redirecting to /content.html after deploying system generated repository on AEM as a cloud DEV server - Adobe Experience Manager 21-01-2022
actually there is an include of rules just before that line:Include conf.d/rewrites/rewrite.rulesand this file contains the redirection to home page which is:RewriteRule ^/?$ /content/${CONTENT_FOLDER_NAME}/${country}/${language}.html [PT,L] So ideally it should redirect to us/en.html with PT flag, which is my issue. Why this redirection is not happening and its going to index.html

Views

282

Like

1

Replies

2
Re: Can't save component dialog having this string into any field: substr() - Adobe Experience Manager 21-01-2022
Hi @dartoism-inetum,There is no OOTB restriction which prohibits the authors to enter this script. Both textfield and text area allows you to enter this text. You can check if there is any custom script written for this validation for that dialog field. If not, there could be permission issue. Please check the logs to find more.

Views

181

Likes

2

Replies

1