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

ibishika
ibishika
Offline

Badges

Badges
23

Accepted Solutions

Accepted Solutions
16

Likes Received

Likes Received
78

Posts

Posts
64

Discussions

Discussions
10

Questions

Questions
54

Ideas

Ideas
1

Blog Posts

Blog Posts
0
Top badges earned by ibishika
Customize the badges you want to showcase on your profile
CIF Minicart(React component) customization - Adobe Experience Manager 03-02-2022
I am searching for some documentation on the CIF Minicart component to be able to customize it. Adobe does have documentation for customizing the non React component from the CIF library but I don't see any for the React components like Minicart.If someone has already worked on customizing CIF react components please share the steps. Thankyou!

Views

91

Like

1

Replies

0
Re: Getting Sightly Exception after selecting and Clicking on page properties icon. - Adobe Experience Manager 31-01-2022
@RameshKumar306 Can you share the content.xml file for your dialog that you have used

Views

181

Like

1

Replies

1
Re: HOW TO UPGRADE FROM AEM 6.3 to 6.5 - Adobe Experience Manager 28-01-2022
You can refer this documentation:https://experienceleague.adobe.com/docs/experience-manager-65/deploying/upgrading/upgrade.html?lang=en

Views

286

Likes

3

Replies

0
Re: Experience fragment plain.html rendition arrayIndexOutOfBound Exception when href starts with # - Adobe Experience Manager 24-01-2022
In that case you can check the same before you call this method and it will solve your issue for now.

Views

105

Like

1

Replies

0
Re: Experience fragment plain.html rendition arrayIndexOutOfBound Exception when href starts with # - Adobe Experience Manager 21-01-2022
That's because when you have just "#" in the path and try splitting it using "/" then the array length will be 1 holding the original value and which means you can just access 0th index.To solve this issue, put a if statement before line no 94 to check if there is "/" character present in the path. Something like this:if(path.contains("/")) { //line no 94} else {pathPrefix = path;}

Views

128

Like

1

Replies

2
Re: Can anyone help me with any documentation for configuring email sending in AEMaaCS - Adobe Experience Manager 18-01-2022
Use ACS email service. Here is the documentation:https://adobe-consulting-services.github.io/acs-aem-commons/features/e-mail/email-api/index.html

Views

901

Likes

2

Replies

0
Re: Dynamic media usage for custom components - Adobe Experience Manager 14-01-2022
In your component dialog, give the author the option to select from a list of smart crop.In your backend java code construct the dynamic media image url with the smartcrop selection and return that as the image url.

Views

186

Like

1

Replies

1
Re: CXF client exception: Interceptor for {XXX} has thrown exception, unwinding now - Adobe Experience Manager 13-01-2022
This might be a permission issue. Checking the username and password in place and then the below link might help:https://stackoverflow.com/questions/9078726/cxf-client-exception-interceptor-for-xxx-has-thrown-exception-unwinding-now "After debugging in the cxf code and seeking help in the cxf mailing list, I finally solved this problem. The problem is caused by the inbound message, the http message lacks the content-type header, which causes the CXF fail to create an XMLStreamReader, and then fa...

Views

846

Like

1

Replies

0
Re: I have created the system user using yaml config but not reflected in admin console. - Adobe Experience Manager 13-01-2022
I have used the .config extension in the config file and got the below syntax working:scripts=[ "create service user set ACL on allow jcr:read,jcr:write for end " ] Replace path and username with the required value.

Views

87

Like

1

Replies

0
Re: AEM quickstart jar file is not running - Adobe Experience Manager 13-01-2022
Some task must be running on that port. Kill that task to free the port and try starting the jar. Follow the below steps to kill the task:Open up cmd.exe (note: you may need to run it as an administrator, but this isn't always necessary), then run the below command: netstat -ano | findstr : (Replace with the port number you want, but keep the colon)Next, run the following command: taskkill /PID /F. (No colon this time)

Views

302

Likes

2

Replies

0