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

HeenaMadan
HeenaMadan
Online

Badges

Badges
17

Accepted Solutions

Accepted Solutions
13

Likes Received

Likes Received
54

Posts

Posts
52

Discussions

Discussions
12

Questions

Questions
40

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by HeenaMadan
Customize the badges you want to showcase on your profile
Re: AEM 6.5 find all pages that use a specific Template - Adobe Experience Manager 08-08-2022
You can run query to find all pages created with specific template in querydebug tool. Open http://localhost:4502/libs/cq/search/content/querydebug.html Add below details : type=cq:Page path=/content/ 1_property=jcr:content/cq:template 1_property.value= then click search. You will get all pages in results created with specific template.

Views

61

Like

1

Replies

1
Re: Apache Sling Content Disposition Filter - Adobe Experience Manager 05-08-2022
Hi, It would be good if you handle opening of robots.txt file in browser at apache level. Add inline as content-disposition in domain vhost file with rewrite rule for robots.txt RewriteRule ^/robots.txt$ /content/dam/abc/robots.txt [PT,L] Header set Content-Disposition inline For Sling content distribution handling here https://experienceleague.adobe.com/docs/experience-manager-64/administering/security/content-disposition-filter.html

Views

85

Like

1

Replies

1
Re: Bulk Migration from Media Server to AEM DAM - Adobe Experience Manager 04-08-2022
You can upload assets using FTP.Dynamic Media enables batch uploading of assets via FTP server. If you intend to upload large assets (>1 GB) or upload entire folders and subfolders, you should use FTP. You can even set up FTP upload to occur on a recurring scheduled basis. Refer https://experienceleague.adobe.com/docs/experience-manager-65/assets/managing/manage-assets.html?lang=en OR You can dump all assets either in amazon S3 or Azure blob storage(cloud) using some scripts Then use AEM Bulk Im...

Views

59

Likes

3

Replies

0
Re: AEMaaCs : How to capture onchange value of pathfiled of dialog - Adobe Experience Manager 04-08-2022
Try this $(document).on("change", ".pathfield__asset--selector", function () { const val = $(this).find("input").val(); });

Views

44

Like

1

Replies

0
Re: Career Question: Need access to AEM to gain experience and get certified - Job oppportunities? - Adobe Experience Manager 29-07-2022
Hi @petert91926122 AEM quickstart jar is not available as open source. You can ask your organization to provide you access & Licence file. Then you can download aem sdk from software distribution portal For certifications, go through AEM tutorials https://experienceleague.adobe.com/docs/experience-manager-tutorials.html Explore certifications here https://learning.adobe.com/certification.html

Views

57

Like

1

Replies

1
Re: Programmatically adding Dropdown values do not show up for content fragments - Adobe Experience Manager 28-07-2022
There is no extensibility in content fragments to create dynamic drop-downs. Fields are limited and no Api is there to customize fields. But you can overlay the jsp script used to generate the dropdown options from static list. Overlay /libs/dam/cfm/admin/components/datasources/optionrenderer/optionrenderer.jsp and try. Hope this helps!

Views

43

Likes

2

Replies

0
Re: Can we change jcr:primaryType of the node after it is created - Adobe Experience Manager 28-07-2022
Yes, you can change folder from code by giving same name to the folder, just change jcr:primaryType="sling:Folder" in filter.xml, you can update earlier testfolder was "nt:folder" now updated to sling:Folder Thanks

Views

68

Like

1

Replies

0
Re: Where the Permission data gets stored in CRXDE. - Adobe Experience Manager 27-07-2022
Permission data is stored in rep:policy nodes. For eg: you have given jcr read access of /content/ to "read-service" user and write access to "write-service". Then go to /content/ click rep:policy, you will find allow nodes, check for rep:privileges Thanks, Heena

Views

60

Like

1

Replies

0
Re: Issue while adding nested container in editable template - Adobe Experience Manager 27-07-2022
It is working for me. I have added nested container in parent container in editable template. then created page with this template. In child container i am able to add component (see header) and component is visible on page. Can you check logs while adding component/ getting component after add in child container. open network tab and validate what is the issue and share.

Views

29

Like

1

Replies

0
Re: How to save session on aem cloud using system resource resolver? - Adobe Experience Manager 17-07-2022
You shouldn't add system user to administrators group. In sling init, you have provided only jcr:read access to service-user.Ideally you should provide read & write access to service-user to write content under /content/project. Remove this user from admin group and try.Repo Init would be like thisscripts=[" # These paths must exist otherwise the following ACL applicaiton will fail, resulting in err'ing build create path /content/(sling:Folder) create service user service-user set ACL for servic...

Views

115

Like

1

Replies

1