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

Asutosh_Jena_
Asutosh_Jena_
Online

Badges

Badges
44

Accepted Solutions

Accepted Solutions
341

Likes Received

Likes Received
1183

Posts

Posts
1139

Discussions

Discussions
182

Questions

Questions
957

Ideas

Ideas
1

Blog Posts

Blog Posts
0
Top badges earned by Asutosh_Jena_
Customize the badges you want to showcase on your profile
Re: Can we minify individual Client side Libraries - Adobe Experience Manager 15-03-2021
Hi @JakeCham Using "Adobe Granite HTML Library Manager" config you will be able to minify all the CSS/JS files and can exclude the files which all are available under a specific path.You can keep all the clientlibs which you do not want to minify under a specific path and add that path into "htmllibmanager.excluded.path.list" property so that it can be skipped during the minification.On a separate note, it is always recommended to minify the CSS/JS files to improve the page performance and secur...

Views

438

Like

1

Replies

0
Re: AEM 6.5 HEAD Requests - Adobe Experience Manager 15-03-2021
Hi @crisr1 Could you please provide some more information here. I personally have never seen this type of request on AEM publish instances.Suspect it might be something that will be coming from dispatcher but will be able to look further more once you provide some more information.Thanks!

Views

471

Like

1

Replies

4
Re: Caching at Component level in AEM - Adobe Experience Manager 15-03-2021
Hi @abhi-ecm If you are going for SDI please refer the below links which provides in detail explanation of how the implementation will be:https://experienceleague.adobe.com/docs/experience-manager-learn/foundation/development/set-up-sling-dynamic-include.html?lang=en#developmenthttps://sling.apache.org/documentation/bundles/dynamic-includes.htmlPlease note that if you have a CDN running infront of your ALB/dispatcher, you will need to disable the HTML content caching in the CDN to make sure the ...

Views

500

Likes

2

Replies

0
Re: How to put defer attribute to AEM js libraries - to a... - Adobe Experience Manager 15-03-2021
Hi @ajeemaw You cannot put a defer/async attribute to the clientlib files as this is currently not an OOTB feature supported by AEM. If you do not need these files to be loaded on the head section, you can overlay headlibs.html and add your custom code to load the required project specific clientlibs.Please refer the file below from where the JS files are getting loaded.https://github.com/adobe/aem-core-wcm-components/blob/development/content/src/content/jcr_root/apps/core/wcm/components/page/v2...

Views

772

Likes

2

Replies

0
Re: Can we async or defer referencing Client side Libraries - Adobe Experience Manager 15-03-2021
Hi @JakeCham As of now this is not supported on any version of AEM as per Adobe. Few months back I too reached out to Adobe with similar query and they asked us to do some custom implementation on our own as they do not have any such implementation available OOTB.Please refer https://github.com/nateyolles/aem-clientlib-async for reference.Thanks,Asutosh

Views

558

Like

1

Replies

2
Re: Rewrite url not working for html extension in source... - Adobe Experience Manager 04-02-2021
@shivama92274331 You can check what is the request URL that is being sent in the dispatcher.log as well as in the publish instance request.log. There might be some rules that are added which are causing the issue and it's not allowing to redirect with .html extension.Looking into the dispatcher log and request.log will give more idea on the issue.

Views

276

Like

1

Replies

0
Re: Get Absolute content path from short URL - Adobe Experience Manager 21-12-2020
@vinodprathipati You can use reverse mapping to get the actual content path.resourceResolver.resolve() - This will give the resource with actual path and using the getPath() on this resource you can get the full path of the resource. Resource resource = resourceResolver.resolve("shortpath");String fullPath = resource.getPath();

Views

1.5K

Likes

2

Replies

1
Re: How to solve $ is not defined - Adobe Experience Manager 20-12-2020
Please make sure to include the jquery plugin on the head section and your JS code should be loaded in the footer section.

Views

702

Like

1

Replies

0
Re: How to solve $ is not defined - Adobe Experience Manager 20-12-2020
@Vinit_Pillai You need to make sure the jquery is defined before this line of code is executed.

Views

716

Likes

2

Replies

2
Re: Content Distribution from Production(Author)--> Stage... - Adobe Experience Manager 20-12-2020
@sumanthaem will there be any time when content will be authored/updated on a lower enviornment (i.e. dev/stage)? or it's going to be always from prod -> stage -> dev?

Views

589

Like

1

Replies

0