Hi @rsl_lucky , I am not sure, if I have understood your question correctly, but with rootPath property, you can restrict to any level in content. rootPath = "/content/a/b/c/d"Can you please give an example of what exactly you are trying to achieve.
Hi @vivianseba , Which AEM version are you using? Are you able to reproduce in OOTB components and pages? Please see this thread if you are using AEM 6.4https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/copy-paste-components-from-one-page-to-the-other-is-not-working/qaq-p/325...
Hi @Deleted Account , Looks like there is some problem with your installed node and npm. Can you please uninstall and install them again. https://stackoverflow.com/questions/56050531/after-upgrading-node-segmentation-fault-core-dumped-error-shows-up-how-can
Hi @iamjeeva , In order to create/delete a page in AEM programatically, take a look at Page Manager APIhttps://helpx.adobe.com/experience-manager/6-5/sites/developing/using/reference-materials/javadoc/com/day/cq/wcm/api/PageManager.html Code Snippet to create a page in AEM: private void createPage (...
Hi @Nagarjuna06 , This is the node which is responsible for taking page name while creating a page.You need to overlay this path if you want to customise Page Name. /libs/wcm/foundation/components/basicpage/v1/basicpage/tabs/basic/items/column/items/title/items/pagename Now, to generate unique id, y...
Hi @sreedobe, There is a similar issue discussed here https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/console-error-aem-6-4-8-we-see-a-403-forbidden-when-clicking-on/qaq-p/372796 As per comments, this has been resolved in 6.5.4
Hi @kirankumark9814 , These are the health check configurations.You can read more about health check herehttps://helpx.adobe.com/uk/experience-manager/6-3/sites/administering/using/operations-dashboard.html and more about these configurations herehttp://www.aemstuff.com/osgi/aem62.html
Hi @binoyp,
Full text search will be able to find español in the content irrespective of language. Please see below OOTB groovy script which is able to find all the references of español in the content
def predicates = ["path": "/content","fulltext": "español"]
def query = createQuery(predicates...