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 does aem prevents sql injection? - Adobe Experience Manager 27-04-2022
refer this for the techniques to prevent sql injections - https://labs.tadigital.com/index.php/2018/11/05/sql-injections-overview-and-prevention-techniques/

Views

210

Like

1

Replies

0
Re: ADFS integration with AEM 6.5.X Author - Adobe Experience Manager 26-04-2022
Hi @Vinodthakur ,Check this documentation for the integration - https://docs.microsoft.com/en-us/azure/active-directory/saas-apps/adobeexperiencemanager-tutorial

Views

66

Like

1

Replies

0
Re: Insert JS only in search-result page of the site - Adobe Experience Manager 26-04-2022
hi @Keerthi97 ,You can create a client library with the scripts and include that in the search results component. In that case you don't have to load it in the head.html and will be just loaded on the search results page where that component will be used. If there is no search result component that is used on the results page, you can put a condition in the html using data-sly-test attribute, and then load the js. In this case also, it will load only in that specific page.some useful links-https...

Views

41

Like

1

Replies

0
Re: How to Translate assets metadata one language to another language - Adobe Experience Manager 26-04-2022
Hi @nav_rasamalla12 ,I did try to translate the asset metadata using the Microsoft translation provided by AEM and it does translate the metadata. Here I have recorded the detail steps in the video for your reference:-https://github.com/sinhaanish/myDemoFiles/issues/3Also, check this link - https://experienceleague.adobe.com/docs/experience-manager-65/assets/administer/best-practices-for-translating-assets-efficiently.html?lang=en

Views

230

Like

1

Replies

2
Re: AEM server 6.5.7 Not started - Adobe Experience Manager 26-04-2022
Hi @Sanjay_Bangar ,Looks like some of your files got corrupted in the local file system. Is this happening repeatedly? I would suggest create a fresh instance using the jar and re-check.

Views

209

Like

1

Replies

2
Re: Core component scenario question - Adobe Experience Manager 26-04-2022
Hi @jaibalaji ,To summarize, there is no way authors can use the new version of the core components without any intervention from developers. As explained by Ravi, you can create a legacy component and keep both legacy and new version available for the authors. But there has to be new component created and checked in by the developers. The authors wont be able to do this by themselves without code change.

Views

119

Likes

2

Replies

0
Re: Robots.txt File is cached from AEM dispatcher - Adobe Experience Manager 25-04-2022
Hi @kbitra1998 ,Do you have an entry in sling resource resolver mapping for resolving the robots.txt? If so, if will simply resolve the 1st one irrespective of having multiple domains. Here is how you should implement robots.txt for multiple domains - For 5 domains, you will have your 5 virtual host configuration. Make an entry like this in your rewrite rules for different virtual hosts.RewriteRule ^/robots.txt$ /content/dam/domain1/robots.txt [NC,PT] ##for domain1 in virtual host for domain 1Re...

Views

176

Likes

4

Replies

2
Re: Add error icon on tabs for first load of create page same like basic tab in case required field is empty - Adobe Experience Manager 22-04-2022
Hi @priyanka3 ,required="{Boolean}true"This is the only property that makes the field mandatory. The red color and the icon appears on basic tab and any other component when you have a trigger. Example - If you try to submit the form or if you enter the value and then delete and make it empty, then only the alert sign gets triggered. This is same behavior for basic tab which is OOTB or any other tab that you create custom. By default when you open the dialog, it will not show up.required=true ac...

Views

163

Like

1

Replies

0
Re: Drag and drop component problem - Adobe Experience Manager 22-04-2022
Hi @robertol6836527 ,Is this happening on your local instance or on the server?I have tried adding more than 40 text component and tried to replicate but the component move still works fine. There is no limitation on number of components used on a page until its too much - >50 (it still works but performance will be slow)In your case, there might be some issue with the page. I would suggest to create a new page and then try the same steps and see if you can replicate. I have seen issues like thi...

Views

195

Like

1

Replies

0
Re: Needs to save meta keyword and description programmatic - Adobe Experience Manager 22-04-2022
Hi @bhagchand ,Instead of using the jcr node API you should use the ModifiableValueMap. This is recommended. Try below snippet Resource tagResource = resourceResolver.getResource("/content/ranosys-website/in/home/about-us/career/jcr:content"); ModifiableValueMap map = tagResource.adaptTo(ModifiableValueMap.class); map.put("cq:tags", "custom message bhagchand"); resource.getResourceResolver().commit();

Views

161

Likes

3

Replies

0