Last time, while surfing on the Sitecore Community, a friend of mine posted a question concerning an issue he is experiencing. The log were being filled in with the following error:
"Sitecore.Social: Ninject, Version=3.2.0.0, Culture=neutral, PublicKeyToken=c7192dc5380945e7 is not loaded. Couldn't determine the Social channels"
In order to fix this error, try the following steps:
- Check the Sitecore.Social.config. See if you have this current setting
<setting name="Social.IoC.AssemblyFullName" value="Ninject, Version=3.2.0.0, Culture=neutral, PublicKeyToken=c7192dc5380945e7" />.
- In the web.config, in the dependentAssembly, you should have this entry
<dependentAssembly> <assemblyIdentity name="Ninject" publicKeyToken="c7192dc5380945e7" xmlns="urn:schemas-microsoft-com:asm.v1" /> <codeBase version="3.2.0.0" href="bin\Social\Ninject.dll" xmlns="urn:schemas-microsoft-com:asm.v1" /> </dependentAssembly>
Hope this helps fix your issue. If you have any other suggestions, your comments are most welcome.
Advertisements