Hey Bill,
Downloaded the souce and ran an install against my 4.8.3 .net 3.5 test site and get thown errors when
I try to create a new item etc
Error: Add/Edit ContentDejour is currently unavailable.
DotNetNuke.Services.Exceptions.ModuleLoadException: C:\wwwbtcdev\www\DesktopModules\WESNet_ContentDejour\EditContentDejour.ascx.vb(411): error BC30451: Name 'ModuleController' is not declared. ---> System.Web.HttpCompileException: C:\wwwbtcdev\www\DesktopModules\WESNet_ContentDejour\EditContentDejour.ascx.vb(411): error BC30451: Name 'ModuleController' is not declared. at System.Web.Compilation.BuildManager.CompileWebFile(VirtualPath virtualPath) at System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile) at System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile) at System.Web.Compilation.BuildManager.GetVPathBuildResult(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile) at System.Web.UI.TemplateControl.LoadControl(VirtualPath virtualPath) at System.Web.UI.TemplateControl.LoadControl(String virtualPath) at DotNetNuke.UI.Skins.Skin.InjectModule(Control objPane, ModuleInfo objModule, PortalSettings PortalSettings) --- End of inner exception stack trace ---
When i look at the source - line 411 of the editmodule shows a reference to
ModuleController.SynchronizeModule(ModuleId)
Changed code to explicitly reference the namespace path
DotNetNuke.Entities.Modules.ModuleController.SynchronizeModule(ModuleId)
Works well now
Westa