I have just upgraded my Umbraco site to version 7.2.2. Now Dialogue is not working. I have also tested local in a fresh install and it is the same thing.
When entering the forum pages I get Compilation Error:
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.
Compiler Error Message: CS0234: Typen eller navneområdenavnet 'Helpers' findes ikke i navneområdet 'Microsoft.Web' (mangler der en reference til en assembly?)
Source Error:
Line 29: using Umbraco.Core.Models;
Line 30: using Umbraco.Web.Mvc;
Line 31: using Microsoft.Web.Helpers;
Line 32: using umbraco;
Line 33: using Examine;
Source File: c:\Users\Me\AppData\Local\Temp\Temporary ASP.NET Files\vs\f3d57e55\d2fa245e\App_Web_dialogue.cshtml.19459672.vbvu2czh.0.cs Line: 31
Not working in Umbraco 7.2.2!
Hi
I have just upgraded my Umbraco site to version 7.2.2. Now Dialogue is not working. I have also tested local in a fresh install and it is the same thing.
When entering the forum pages I get Compilation Error:
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.
Compiler Error Message: CS0234: Typen eller navneområdenavnet 'Helpers' findes ikke i navneområdet 'Microsoft.Web' (mangler der en reference til en assembly?)
Source Error:
Source File: c:\Users\Me\AppData\Local\Temp\Temporary ASP.NET Files\vs\f3d57e55\d2fa245e\App_Web_dialogue.cshtml.19459672.vbvu2czh.0.cs Line: 31
Hi Kasper,
This is because the file
/bin/Microsoft.Web.Helpers.dll
was removed in Umbraco v7.2.2 - which Dialogue assumed would be distributed.The quickest fix for you is to get hold the
Microsoft.Web.Helpers.dll
and copy it to your /bin folder.If you are using NuGet, you can get it from here: https://www.nuget.org/packages/microsoft-web-helpers/
Cheers,
- Lee (Kelleher, not Messenger)
Thanks Lee,
Yes, it helped for now :-)
This one bit me too (not specifically for this package though). I had to remove my existing reference to the Helpers library then install via Nuget.
Thanks,
Jason
Here's a YouTrack issue related to this: http://issues.umbraco.org/issue/U4-6315
We had a similar issue after upgrading a website. The issue was that we had overwritten the web.config in the views folder.
(Nothing related to Dialogue)
is working on a reply...