Reputation: 5413
I have done the following:
Visiting the base site url yields a YSOD with the error message:
Could not find configuration node: contactRepository
Now I understand what this means - there's an expected configuration section that is missing. Adding an empty element contactRepository
yields an expected message that this section is not defined.
What is contactRepository
, what is its associated configuration section type, what is it for and what values should be specified in it? Alternatively, how can I turn off whatever demands this section to be present?
edit #1:
In the Sitecore.Analytics.config
file in the node there are the following two lines:
<!--This configuration node is obsolete and will be removed in a future version of Sitecore. Use "contactRepository" node to get access to Contact repository-->
<contactRepository ref="contactRepository"/>
<contactRepository>
without the ref
attribute, commenting out this node, both nodes, and the whole tracking node makes no difference to the application's behaviour.Upvotes: 4
Views: 938
Reputation: 3216
Looking at my local Sitecore 7.5 setup the Contact Repository settings should be in your Sitecore.Analytics.config.
The contacts repository settings relate to the new xDB stuff.
Please ensure you have the correct Sitecore.Analytics config files for 7.5. There should be around 15 config files with new settings for xDB.
Please read this blog post for more information on the new Analytics setup.
Upvotes: 2