Hi, The node traversal error in the first query with the OR clause is likely due to the limitation of performing complex OR queries involving multiple ISDESCENDANTNODE conditions. I believe AEM does not support this kind of query(correct me if I'm wrong ) To overcome this, consider using the UNION o...
Hi, To purge completed translation projects in AEM 6.5, you can create a custom workflow process that identifies and deletes projects based on specific criteria (e.g., completion status and date). Schedule this workflow to run periodically using AEM's workflow launcher. This approach allows for easy...
Hi,Yes, it is possible to install and configure AEM using Ansible. You can write Ansible playbooks to automate the installation process and configure AEM on multiple servers. By defining an inventory file with server details and creating playbooks with tasks for installing Java, configuring settings...
Hi, To reuse React components in other AEM projects/sites, you can create a shared npm package containing the React components. This package can be installed as a dependency in the AEM projects, allowing you to import and use the components in your AEM scripts or templates. This approach promotes co...
Hi, The reasons for missing or removed nodes and properties like cq:lastModified and jcr:content can include customization, content migration processes, and content updates by authors or administrators. To determine the specific reason in your case, review page history.
Hi, To resolve the issue, ensure that the repository configuration is correct, check if the desired version is available, force an update by deleting the local cache, or explore alternative repositories.
Hi, In the given test case, the @ChildResource annotation may return null because the AEM context used for testing is not properly initialized to include the child resources from the JSON file. To resolve this issue, you can modify the test setup method as follows:@BeforeEachpublic void setup() {ctx...
Hi, o validate asset file names during upload in AEM DAM, develop a custom OSGi bundle implementing AssetUploadNameValidator interface. Override the validate method to check for unsupported characters. Register the bundle as an OSGi service and configure it in AEM's OSGi settings.
Hi, In the Touch UI interface of AEM, the Site Administration interface lacks certain information about page status compared to the Classic UI. To display additional information to authors without code changes:Customize the Card view to include "Page in Workflow" information.Utilize the Page Propert...
Hi, The error you're encountering with the aem:rde:install command suggests an issue with the program configuration or authentication. To resolve it:Verify program configuration: Double-check the program ID, organization ID, and API key used in the Cloud Manager SDK configuration.Check authenticatio...