AEM 6.5

AEM Forms with MySQL

In this blog, I will discuss how the AEM 6.5.x Adaptive form will work with MySQL. Let’s start the discussion: How to connect adaptive forms to the MySQL database? For Connecting Adaptive Form to the MySQL database server, below mentioned steps need to be followed. Step 1: Install mysql-connector-j bundle in AEM Go to the […]

Read More

How to use AEM as a Headless CMS

Adobe Experience Manager (AEM) has multiple options for defining headless endpoints and delivering its content as JSON. Some of them are- GraphQL Token authentication Content Service In this blog, we are going to implement Aem as a headless CMS by using GraphQL. What is GraphQL? GraphQL is an API used to expose data of the […]

Read More

How to create package of Users, Groups their Permission by using ACS Commons

First, Upload ACS Commons Package at your author instance. Now, Go to the URL http://localhost:4502/miscadmin. Now, Go to acs-commons > Content Packagers. Now, Go to acs-commons > Content Packagers. Click on New > New Page. Give a Title, Select ACL Packager and click on create. (If we select Authorizable Packager User/Group package will create without […]

Read More

Composite Component in AEM

What is a Composite Component? A Composite Component is a component where we want a component with some default component like image, title, text, etc, with authoring power, when the component is dropped. How to make the Composite Component? For making a composite component, you can make a container component. In our case we do […]

Read More

How to add/update the Search Filters in AEM?

To update Search Filter go to Tools -> General -> Search Forms as shown below in the image. When you click on the search form UI will appear as shown below. Select the Assets Admin Search Rail and click on edit as shown below. The following screen will appear after clicking on the edit icon. […]

Read More

How can we create custom error pages in AEM?

For creating the custom error pages in our project we can use the acs commons utility to handle error pages. For this, you need to upload the ACS commons package in the crx. After that, you need to overlay the sling folder present in the libs folder as shown below. We only need to overlay […]

Read More

SAML Integration with AEM

SAML (Security Assertion Markup Language) is a key technology through which we can achieve SSO (Single Sign On). In Adobe Experience Manager (AEM) 6.x, a SAML authentication handler is provided by default. How to configure SAML in AEM? There are some simple steps through which we can configure SAML in AEM Go to the AEM […]

Read More

Use of Import-component.js in React with AEM

If you are using the archetype used in part 1 , then your react module contains a file called import-components.js . 1.What is the Use of import-component.js ? You need to import the components inside import-components.js , Otherwise, you will not be able to show your component into the page.i.e. Here is the location of […]

Read More

SPA in AEM 6.5 Part 2

1. How to create a custom SPA component ? Lets create a component in AEM For creating custom component you need to remember these things i.e. There is a mapping of components between aem module and react module. We should use Sling exporter to export our component json and so that it can be accessed […]

Read More

SPA in AEM 6.5 Part 1

What is SPA? SPA stands for single page application. It is a new feature in AEM 6.5 which helps us to build single page applications using react or angular with AEM. How SPA works in AEM? Let’s understand the flow using this diagram — We have an AEM Component in which we can have nodes […]

Read More