Explore product-specific spaces to ask questions, share insights, and learn best practices.
Recently active
Hello, We need to upgrade from AEM 6.4 (On-Prem, AWS Cloud) to Adobe Managed Service AEM 6.5. Currently we have approx. 7k Pages and 30K assets in existing environment . Can someone suggest how we can do content synch from AEM 6.4 (On-Prem, AWS Cloud) to Adobe Managed Service AEM 6.5 ? Can Adobe CSE will help us here if they are also providing some utility for content synch? Thanks !
Como habilitar a opção Site do Modelo (Site from template) , no AEM executando localmente. https://experienceleague.adobe.com/pt-br/docs/experience-manager-cloud-service/content/sites/administering/site-creation/site-templates Tudo isso devido ao item baixo, que consta neste link. https://experienceleague.adobe.com/pt-br/docs/experience-manager-learn/getting-started-wknd-tutorial-develop/site-template/create-site
Hi, I did the initial project setup using archetype 39 using Cloud SDK with Remote SPA and deployed the code. When i go to the RemoteSPA editable template of the created project and go to the initial content mode iam not getting the parsys. Please help with the steps how to get the parsys to insert the new component. Initial Content Mode: Structure Mode: Thanks & Regards,Kalyan
Hi everyone! Can you help me?I would like to know if it is possible to configure a user's access in Cloud Manager at the Program level?For example, restrict a user's access to services, allowing only access to "SSL Certificate" and "IP Allow List", is it possible? How?
Is there a way to publish a whole tree of tags at once?We have multiple tag trees containing a few thousand tags in AEMaaCS. How can we publish all of them at once? I already tried it with "manage publication" while publishing a page, but this doesn't work, because process doesn't include children (even though it is enabled). Thanks in advance,Anian
HiI am writing a unit test for a servlet that uses an excel file as input stream using the poi libraryorg.apache.poiThis is the servlet: protected void doPost(SlingHttpServletRequest request, SlingHttpServletResponse response) throws IOException { PrintWriter out = response.getWriter(); RequestParameter xlsxFile = request.getRequestParameter("xlsxfile"); final InputStream inputStream = xlsxFile.getInputStream(); try (inputStream) { Workbook workbook = new XSSFWorkbook(inputStream); // Use XSSFWorkbook for xlsx files json = extractData(workbook); } catch (IOException e) { throw new RuntimeException("Could not parse XLSX file", e); } This is the Unit Test: void testExcelFileImport() throws IOException { InputStream inputStream = MyServlet.class.getResourceAsStream("/component/tools/excel-import/import/excel-data.xlsx"); byte[]
I am trying to generate hash value for a javascript file in my java class. Im not able to pass the path of the javascript file to my Java method. Could you please suggest where to store js files and how to access them from my java model? For example, could someone suggest what path to give for my js script here - public String Hashes() {List<String> jsFiles = new ArrayList<>();jsFiles.add("/pathtojsfile.js"); } Thanks
As part of the migration steps from AEM on prem to AEM as a Cloud Service: https://experienceleague.adobe.com/en/docs/experience-manager-cloud-service/content/migration-journey/readiness It lists this item to check for: Changes to Publish repositoryDirect changes to the Publish repository are not allowed, except those changes under /home. It is always recommended that any changes made on author get distributed. All code and configuration changes must be deployed through the corresponding Cloud Manager pipeline. Let's hypothetically say I've joined an AEM development team, and have noticed they have a sling job that runs on each of the publishers, which modifies data in the repository. What are the potential issues that may occur doing writes to the repository from publishers running in AEM as a cloud service? Thanks!
we are using repoinit to initialize creating groups and maintaining permissions. This is working fine on initial creation. but on any change in the repoinit file I'm not seeing the permissions getting updated unless i remove the parent folder path.where all the users and groups are created Just wanted to check if I'm missing something here
Hello Everyone,I am using AEM 6.5 , in one of the publishers I am getting 503 error, I try to restart the aem service but no luck.To fix the issue I try to delete below path but not workingcrx-quickstart/repository/segmentstore/repo.lockcrx-quickstart/launchpad/felix/cache.lockcrx-quickstart/repository/indexcrx-quickstart/launchpad/config/org/apache/sling/jcr/repoinitCan anyone please help me to get back my server?Error: Log deatails :07.05.2024 10:25:38.777 *INFO* [pool-10-thread-1] org.apache.felix.systemready Service [3752, [org.apache.felix.systemready.SystemReady]] ServiceEvent REGISTERED07.05.2024 10:25:48.808 *ERROR* [qtp1179082515-65] org.apache.sling.engine.impl.SlingHttpContext handleSecurity: AuthenticationSupport service missing. Cannot authenticate request.07.05.2024 10:25:48.808 *ERROR* [qtp1179082515-65] org.apache.sling.engine.impl.SlingHttpContext handleSecurity: Possible reason is missing Repository service. Check AuthenticationSupport dependencies.07.05.2024 10:
Hi All, We have configured SAML Authentication with Microsoft Azure. We are able to invoke the authentication when we are loading the page on browser for the pages checked as granite:AuthenticationRequired. But other than this we have login and logout buttons also. 1. How do we invoke SAML authentication on click of login ?2. How do we invoke logout functionality on click of logout ?
Hi Team We are on AEMasCS, we were seeing the WF instance(QA-Cloud-instance) console 0 count, but in health check console the running instance showing as 7900(PFB screenshot), Kindly let us know how to check the running instance WF status.
I have tried to Launch the workflow through code and got the below error Please find below the below code package com.geeks.demo.core.servlets;import com.adobe.granite.workflow.WorkflowSession;import com.adobe.granite.workflow.exec.WorkflowData;import com.adobe.granite.workflow.model.WorkflowModel;import org.apache.commons.lang3.StringUtils;import org.apache.sling.api.SlingHttpServletRequest;import org.apache.sling.api.SlingHttpServletResponse;import org.apache.sling.api.resource.ResourceResolver;import org.apache.sling.api.servlets.SlingSafeMethodsServlet;import org.apache.sling.servlets.annotations.SlingServletPaths;import org.apache.sling.servlets.annotations.SlingServletResourceTypes;import org.osgi.service.component.annotations.Component;import org.slf4j.Logger;import org.slf4j.LoggerFactory;import javax.servlet.Servlet;import javax.servlet.ServletException;import java.io.IOException;@Component(service = Servlet.class)@SlingServletPaths( value={"/bin/execute
We use AEM Asset Videos but they appear they do not have thumbnails under Renditions in the DAM. When you look under Renditions only original MP4 is there. Also when one adds a video using the DAM browser a front end error occurs in AEM Editor because assetSelectedEvent.thumbnail is undefined. I was reading some articles here that one needs Adobe Dynamic Media https://experienceleague.adobe.com/docs/experience-manager-65/assets/dynamic/scene7.html?lang=en. Is that a hosted solution? How can one obtain MP4 thumbnails in Assets without Adobe Dynamic Media? function handleSelections(control, state, selections) {var API_ASSETS = "/api/assets";var ASSETS_PREFIX = "/content/dam";var assetPath = selections[0].value;var jsonAssetPath = assetPath.substring(ASSETS_PREFIX.length);$.get(API_ASSETS + jsonAssetPath + ".json").done(function(data) {if (!data.properties || !data.properties.metadata || !data.properties.metadata["dc:format"])return;var thumbnailLink = data.links.find(funct
we are using central dam which is connected to the sites dam, our central dam is configured with dynamic media. we have the latest content in prod which we want to sync to stage, the architecture is the same. How do we plan a full content sync to stage. so that the dynamic media references are not pointing to prod and connected assets dont break
I tried by overlaying the siteadmin.action.js and adding a condition in the move option in the siteadmin-> action. But the overlayed function is not working.Even the existing singleSelection is also not working, when I change it into anysleection, those changes are also not working.where Do I need to check? how to confirm whether my overlay is working or not?
I want to create a user with user manage api from java application.Below is the code that i am using. Repository myRepo = JcrUtils.getRepository(path);javax.jcr.Session repoSession = myRepo.login(new SimpleCredentials("admin", "admin".toCharArray()));org.apache.jackrabbit.api.JackrabbitSession jRabbitSession = (JackrabbitSession) repoSession;userManager = jRabbitSession.getUserManager();userManager.createUser(username, password); But it gives below error "org.apache.jackrabbit.jcr2spi.SessionImpl cannot be cast to class org.apache.jackrabbit.api.JackrabbitSession(org.apache.jackrabbit.jcr2spi.SessionImpl and org.apache.jackrabbit.api.JackrabbitSession are in unnamed module of loader 'app')"
Hi Everyone !Is there any way to adjust AEM grid system based on the UX defined Grid layout ? Is this a recommend approach to adjust the column width and grid layout which is coming OOTB ?
Hello Community - I see some issues while accessing the pages in AEM eventhough the resource is available in the specifiied location. The component is pointing to the sling:resourceSuperType and the resource is already available in the resourceSuperType location. I have even copied the required resource directly under the component but it's still not working. Can you tell me what could be the issue? Caused by: org.apache.sling.scripting.sightly.SightlyException: org.apache.sling.api.SlingException: Cannot get DefaultSlingScript: Required script resource could not be located: test.js. The caller is /apps/project/components/page/xfhead/content.html at com.adobe.cq.sightly.WCMScriptHelper.includeResource(WCMScriptHelper.java:184) [com.adobe.cq.sightly.cq-wcm-sightly-extension:1.6.0] at com.adobe.cq.sightly.internal.extensions.ResourceExtension.call(ResourceExtension.java:138) [com.adobe.cq.sightly.cq-wcm-sightly-extension:1.6.0] at org.apache.sling.scripting.sightly.impl.engi
hi folks, Hackers told us that they can access various urls using a selector "form".We don't have AEM forms so I am just going to get rid of this selector like this,I assume this is o.k.? /0xxx { /type "deny" /url "*" /selectors 'form' } The hackers told us they could download a truststore file with this url below. However if i look in our Tools -> Security -> Trust store UI,it is empty as I never put anything into it. https://www.xxxxx.com/content/dam/jcr:content.form.pdf/etc/truststore/truststore.p12.res Do you reckon the file is just junk? It is just 1K file and looks like Chinese chars. thanks all
Hi, I have added the kendra dependency in core pom.xml and parent pom.xml. <dependency><groupId>software.amazon.awssdk</groupId><artifactId>kendra</artifactId><version>2.25.40</version></dependency> there is no error in java class and there are no compilation errors in core folder as well. But we are getting the following error :
Hi all,I need to activate trigger notifications for our support mailbox whenever editors attempt to perform actions such as moving, unpublishing, or deleting pages from the AEM environment.Could you kindly advise on the best approach to set up these notifications within the AEM environment? Any insights or guidance on configuring this functionality would be greatly appreciated.Thanks.
Could not hide or resize the component in responsive grid layout mode for any mobile/tablet. Any idea what's missing? Thanks
I'm having issues finding any documentation on how to clone an AEM instance to another machine. Wondering if the community could help me with the steps necessary to do this. For instance, any configuration necessary once I have copied the Adobe directory to the new machine.
Can anyone tell me if this component is capable of importing a LinkList field? I've had success importing the basic field types, but now I have need to import a CF model with a field of type "LinkList" and I'm not sure what the formatting of the excel column should be. Any help on this, or if the component supports it at all would be highly helpful. Example of the CF Model and an example instance of this is below:Thanks!
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.