I'm trying to install the Sitecore Experience Extractor package in Sitecore 8.0. I keep getting the error "An item name cannot contain any of the following characters: /:?"<>|[]- (controlled by the setting InvalidItemNameChars)". I updated my web config to remove the invalid characters:
<setting name="InvalidItemNameChars" value="" />
<!-- ITEM NAME VALIDATION
Regular expression for validating item names
-->
<setting name="ItemNameValidation" value="" />
<!-- ITEM NOT FOUND HANDLER
Url of page handling 'Item not found' errors
-->
I also added a patch based on this post:https://sitecore.stackexchange.com/questions/5503/sitcore-wffm-installation-error-an-item-name-cannot-contain-any-of-the-follow
<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/">
<sitecore>
<settings>
<setting name="ItemNameValidation">
<patch:attribute name="value"></patch:attribute>
</setting>
</settings>
</sitecore>
</configuration>
but I'm still getting the error.