@KannaKarthi You can do do this either from dispatcher using rewrite rules or using etc mapping Please refer the URL belowhttps://www.aemguide.in/2019/07/remove-html-extension-at-dispatcher.html?m=0https://www.albinsblog.com/2018/04/how-to-implement-extension-less-urls-in-adobe-experience-manager.ht...
@Keerthi0555 The application creation has to be done in Adobe Learning ManagerOnce application is created, It can be configured in AEM in Cloud services in Adobe Learning Manager configuration
@Prashardan You can use below repo init script to deny create folder and delete folder option under certain path{ "scripts": [ "set ACL on /content/dam/specific-folder\n allow jcr:read by everyone\n allow rep:write by everyone\n deny jcr:addChildNodes on sling:Folder by everyone\n de...
@cxasha One possible reason for this error could be the presence of a large number of assets in the /content/dam folder.Please try running this on a DAM folder with fewer assets.If the issue persists, check your error logs and share them here.
@cxasha Use below query to search assets which have non alphanumeric charactersSELECT * FROM [dam:Asset] AS assetWHERE ISDESCENDANTNODE(asset, '/content/dam')AND NOT asset.[jcr:title] LIKE '[a-zA-Z0-9]*'