Team Lhotse

Create New User in AEM

In this post I will Explain how to create new User in AEM. For creating the AEM User with specific permissions we have to follow some steps as I will explain below: Open admin console of AEM. Open User console from main admin console. Create new user by click on Edit by selecting create >> […]

Read More

Renditions Creation for the Image

In this post, I will explain how to create different type of renditions for the image in Adobe CQ5. When we upload the images in the DAM, Adobe CQ5 creates the renditions of an image that includes different size of the same image. This can be helpful when we need to create thumbnails or similar […]

Read More

Mailing Issue in AEM with Gmail SMTP Configuration

In this post, I will sort out a small but important issues that most of the developer faced while they are doing mailing service configuration in AEM with Gmail SMTP settings. Here is the problem description-   “Author have done email configuration in AEM with Gmail SMTP configuration values, all configuration values are right but […]

Read More

Custom ComboBox with Dynamically Generated option value by the Servlet

In this post, I will explain how to create ComboBox with Dynamically generated option value in AEM6 dialog? Let’s see with the example:- I created a dialog with a tab named as tab1. Under this node, I created a node named as items with the property jcr:primaryType = cq:widgetCollection.Under this node, I created a node […]

Read More

Dispatcher Configuration on Apache2 Server

In this blog, I will explain the easiest way of dispatcher configuration on Apache2 Server and OS version Ubuntu 15.04. This configuration will also work on Ubuntu 14.04. Let’s start:- Firstly, you have to install Apache2 server on your Ubuntu machine using this command- sudo apt-get install apache2 Now type the command- sudo service apache2 start Now […]

Read More

Custom Multifield xtype in AEM

In this blog, I will explain how can we create custom multifield in a dialog and design dialogs. For creating a custom multifield, Firstly we have to create a node with the properties jcr:primaryType = cq:Widget and xtype = multifield. Under this node we have to create a node named as fieldConfig with the properties jcr:primaryType = cq:Widget and xtype = multifieldpanel. For the custom multifield xtype we […]

Read More

Resource Resolver Object in AEM6.x Services

As we know that getAdministrativeResourceResolver() method has been deprecated from ResourceResolverFactory interface in AEM6 and above versions. Then the question is-   Q1). How to get ResourceResolver object in Sling services in AEM6.0 and above versions? If you are working with AEM6 or AEM6.1 then you have two options- If you know the credentials of […]

Read More

RTE Source Edit Plugin in AEM

In this blog, I will explain how can  we enable source edit plugin in RTE component in AEM. To add Source Edit plugin in RTE component, we have to create a node named as rtePlugins under richtext node having jcr:primaryType=nt:unstructured. Under this we have to create a node named as misctools having property features= *.Let’s see it with an example-I […]

Read More

Removing component’s auto generated div in AEM

In this blog, I will explain how can we remove extra div those are generated automatically when we use either sling:include or cq:include in our jsp. Now the question arises, can we get rid of these extra divs? Will they be generated everytime? If we can remove these extra divs, how can we do that? In this post, I […]

Read More

Secure Apache from Clickjacking

In this post, I will explain an important Apache2 configuration, this configuration is used to stop clickjacking. I got to know about clickjacking when I was working with security checklist in AEM. Q1. What is clickjacking? Clickjacking, also known as a “UI redress attack”, is when an attacker uses multiple transparent or opaque layers to trick a user […]

Read More