Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

Hyphens missing in the page name

Avatar

Level 4

Normally when I author a new page in AEM 6.0, AEM takes the spaces in the page title and replaces them with hyphens in the page name. However, at one of my AEM 6.0 instances, AEM fails to insert hyphens into the page name as expected, so a page titled "my test page" becomes named "mytestpage" instead of "my-test-page". There are no errors or warnings in the error log when this happens. Is there a specific AEM component, configuration, or bundle in the web console that handles this? 

1 Accepted Solution

Avatar

Correct answer by
Level 4

Here's how I fixed this. There is an ootb component at http://localhost:4502/system/console/configMgr/com.day.cq.wcm.core.impl.PageManagerFactoryImpl which normally swaps illegal characters with hyphens by default. This component is the "Day CQ WCM Page Manager Factory". It has a configuration field labeled "Illegal Char Mapping" that is normally empty since it is hardwired to use a hyphen. I tried unbinding this component several times but that did not fix the problem. My fix was to just type a hyphen in the Illegal Char Mapping field and then click Save.

View solution in original post

3 Replies

Avatar

Correct answer by
Level 4

Here's how I fixed this. There is an ootb component at http://localhost:4502/system/console/configMgr/com.day.cq.wcm.core.impl.PageManagerFactoryImpl which normally swaps illegal characters with hyphens by default. This component is the "Day CQ WCM Page Manager Factory". It has a configuration field labeled "Illegal Char Mapping" that is normally empty since it is hardwired to use a hyphen. I tried unbinding this component several times but that did not fix the problem. My fix was to just type a hyphen in the Illegal Char Mapping field and then click Save.

Avatar

Level 1

Hello Andy,

I see similar behavior in page name after 16 characters length , where the mechanism of replacing illegal characters by hyphen does not work and t simply concatenate the string from title, did you see this pattern or behavior after you fixed this issue ? 

Avatar

Level 4

I didn't see the issue you described after fixing my issue in AEM 6.0. I also haven't seen this issue in AEM 6.1 after several months.