Check the naming conventions here: Naming conventions for assets
Re: Asset name with spaces
Re: Assets expiry date
thank you very much very helpful
Re: Asset name with spaces
Does this mean I need install any service packs?
Re: Asset name with spaces
What is your AEM version?
It is recommended to be always on the latest service pack to avoid running into known issues.
Re: percent calculation
That works, thank you!
Re: Multiple file processing in ACS
Thanks Jyoti!! It worked!!
Re: Asset name with spaces
We are on 6.4.4. However I am worried about any indexing challenges we might get with it.
We ran into a recent issue of resource resolver and Externalizer being used in the same code and they are encoding the path twice. So "abc def.png" is becoming "abc%2520def.png" instead of "abc%20def.png". Do you think that is an issue with code or could possibly be because of the spaces?
Note : We have a lot of assets with spaces? Should we consider renaming them?
Re: Offer error: CompileRealTimeScript
Hello Adhiyan C,
This is the right-tab view that I see when clicking on "Offer - design" environment:
It seems all correct and similar to what you suggested.
jyotiy43907700 here below the folders belonging to my Offer hierarchy
This is the error I get when I deploy an Offer categories:
Could you tell me why I get this error and how to solve it?
Thanks,
Salvatore
Re: Adding a simple sum field
I am having an issue with my FormCalc script on LiveCycle Designer forms. Here is what I get
My form has 11 Rows (top row[0] is text only) and 9 columns with columns 4 (parking),7 (miles),8 (rate) being the values I'm trying to total.
Here is the formula I've been using:
form1.Page1.table.Row1.total::calculate - (FormCalc, client)
$.rawValue = parking+(miles*rate)
This was working just fine and stopped working one day. Any help and suggestion would really be appreciated.
LiveChat implementation in launch
Hi All,
Is there a way to implement LiveChat with Launch.
We want to keep the lemtagconfig.js in launch as this can change more often. I found the article which were giving some details for
livechat integration with DTM but could not find anything with launch
Does anyone has done this? if you could share your approach that will be helpful.
Thanks,
Monika
Exporting SF users to AEM
Hi Team,
I have an requirement to fetch the users / leads list from SDFC and display it on AEM page. Is there way simple way to achieve this? Please help.
Thanks,
Re: AEM looking for a valid user on content pages
Hello Vishu,
this has been a problem for us as well, after the update. Could you please elaborate about how to redirect the warnings? I haven´t been able to find a configuration for this.
Best Regards
Martin
Re: OOTB TextImage comp on AEM 6.3.3.0
Is it reproducible on just 1 specific browser or a few on dev?
Try deleting browser cache, dispatcher cache(if configured), & browser cookies. Open Incognito Window and try again.
When you save the component on the page and render the page, do you see any errors in Console tab and/or 4xx/5xx errors in Network tab in Dev Tools?
Re: AEM process spiking after running version comparison
It's all INFO...Do you see any errors related to it? Any traversal queries in error.log? Any Console errors in Console tab or 4xx/5xx status codes in Network tab in Dev tools?
Which AEM Version are you having issues on?
Re: aem-project-archetype and ReactJS
You can refer to the AEM WKND SPA Project created using React. It contains the setup information:
Adobe Experience Manager Help | Getting Started with React and AEM SPA Editor - Chapter 0https://helpx.adobe.com/experience-manager/kt/sites/using/getting-started-spa-wknd-tutoria l-develop/react.html
Adobe Experience Manager Help | Getting Started with React and AEM SPA Editor - Chapter 2
Re: AEM 6.5 SPA React component with datasource in dialog
AEM WKND SPA with React makes use of React props:
Adobe Experience Manager Help | Getting Started with React and AEM SPA Editor - Chapter 2
I also found some external links that could be helpful:
GitHub - auniverseaway/pug-ranch-2018: A reference implementation for using React with AEM
Creating Your First Custom AEM Component Using React – Part 1 | Perficient Digital
https://experiencemanaged.com/posts/a-practical-guide-to-building-spas-on-aem-using-react. html
Re: Asset name with spaces
You can have assets with spaces in their names.
As far as %2520 is concerned,
The common space character is encoded as %20
. The %
character is encoded as %25
.
The way you get %2520
is when your url already has a %20
in it, and gets urlencoded again, which transforms the %20
to %2520
.
https://stackoverflow.com/questions/16084935/a-html-space-is-showing-as-2520-instead-of-20
As Vish.dhaliwal recommended, you should install latest SP to avoid running into known issues. You can find it here:
Re: Adding "Change Thumbnail" button to an asset
The file type for both folders & files/assets are different.
You can create some custom code(maybe using JS) that reads the number of assets on a page/in crx and adds button to them using JS with DOM.
You can get all the assets on the page and append the button to them using a loop or something like that.
On a page, the assets are basically enclosed in anchor tags which when clicked direct us to the clicked asset.
Ex:
let btn = document.createElement("button");
btn.className = "<bla bla bla>";
btn.appendChild(document.createTextNode("<bla bla bla>"));
EachAsset.appendChild(btn);
Re: AEM 6.5 - Not able to start AEM after SP2 installation.
You are getting the below error:
com.adobe.granite.installer.Updater Could not get ConfigurationAdmin to register whitelistentry for BundleUpdater
Looking at how this is thrown basically there is a logic statement that is not getting satisfied for your environment, so the bundles from the Service Pack 2 might not be getting written to the repository to be picked up by the installer. Due to this, the installation might be failing.
if (active.get() && data.state == State.WRITE_BUNDLES_TO_REPOSITORY) {
// State.WRITE_BUNDLES_TO_REPOSITORY
// write all bundles to the JCR for the JCR installer to pick them up
}
else {
logger.error("Could not get ConfigurationAdmin to register whitelistentry for BundleUpdater. ");
}
The logic IF statement fails to be true. so the ELSE is run and logs that error.
There is a chance that the BundleUpdater that is currently installed was never removed from the instance after new service pack installation.
What errors do you see in upgrade.log file?
org.apache.sling.distribution.DistributionRequest is not resolved in aem 6.5.2
Hello Everyone,
We were using sling distribution API in AEM 6.3. Now when we try upgrading to AEM 6.5.2 below imports are not resolving. Did someone face this issue? if yes could you please share your findings and inputs to come out from this situation. Is there any alternative solution for this ?
import org.apache.sling.distribution.DistributionRequest;
import org.apache.sling.distribution.DistributionRequestType;
import org.apache.sling.distribution.DistributionResponse;
import org.apache.sling.distribution.Distributor;
import org.apache.sling.distribution.SimpleDistributionRequest;