You may have ran into an issue during deployments when trying to publish in the past where you have seen this message:
“An item name cannot contain any of the following characters: \/:?”<>\-|[] (controlled by the setting InvalidItemNameChars)”
In order to help move forward on this you need to disable the default ItemNameValidation settings if you are having some deployment issues.
To do that (would only recommend temporarily) you can follow the steps below:
Add a config file to App_Config/Include named z.DisableItemNameValidation.config and put this in it:
<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/"> <sitecore> <settings> <setting name="ItemNameValidation"> <patch:attribute name="value"></patch:attribute> </setting> </settings> </sitecore> </configuration>
Again, when you are finished I would recommend taking this back out of your files to keep things as standard as possible.