This post shows you how to overcome the problems with installing the Dialogue forum package in your Umbraco site.
Build the project
If you get this error:
Cannot find reference for Microsoft.Web.Helpers
Then install the following NuGet Packages using the NuGet Package Manager Console
PM> Install-Package Microsoft.AspNet.WebHelpers
PM> Install-Package WebMatrix.Data
PM> Install-Package WebMatrix.WebData
When you have done this, do another build and try to go to the forum.
You may then get another error about WebMatrix.Data
You need to edit the web.config file at the root of the site to redirect version 3.0.0.0 to version 2.0.0.0
<dependentAssembly>
<assemblyIdentity name="WebMatrix.Data" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="2.0.0.0" />
</dependentAssembly>
Do another build, you should now be able to go to the forum page.
Umbraco MVP and .NET Web Developer from Derby (UK) who specialises in building Content Management System (CMS) websites using MVC with Umbraco as a framework. Paul is passionate about web development and programming as a whole. Apart from when he's with his wife and son, if he's not writing code, he's thinking about it or listening to a podcast about it.
This post shows you how you can change the colour and animate tree icons in Umbraco based on a prope…
Read PostThis post tells you how to solve the error assets file project.assets.json not found in Visual Studi…
Read PostThis post gives you some razor code to help you see the values of the IPublishedContent item's prope…
Read PostThis post shows you how to fix the 403 error on preview after you have upgraded it.
Read Post