Bruce,
I recently purchased the latest version of Url Master and the latest version of BizModules Ultra Video Gallery (UVG). I'm running DNN 5.5 on Win 2008 R2 (x64) under .NET 3.5 SP1.
I followed the advice to comment out NeatUpload from the <modules> list, which got my site running again. Unfortunately, this causes UVG to be unable to handle large uploads (it errors out after 30 seconds or so), plus users can't see their upload progress which is a bad user experience.
Your post mentioned adding showDebugCode="true" to get these modules working in harmony. When I add that snippet, my whole DNN installation breaks and produces a the generic IIS 500 error. Here is part of my <system.webServer> section. Please tell me what I'm doing wrong. Thank you.
Kevin
-----------------------------------------------------------------------
<system.webServer>
<modules runAllManagedModulesForAllRequests="false">
<add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" preCondition="managedHandler" />
<add name="Compression" type="DotNetNuke.HttpModules.Compression.CompressionModule, DotNetNuke.HttpModules" preCondition="managedHandler" />
<add name="RequestFilter" type="DotNetNuke.HttpModules.RequestFilter.RequestFilterModule, DotNetNuke.HttpModules" preCondition="managedHandler" />
<add name="UrlRewrite" type="iFinity.DNN.Modules.UrlMaster.UrlRewriteModule, iFinity.UrlMaster.FriendlyUrlProvider" preCondition="managedHandler" showDebugCode="true" />
<add name="Exception" type="DotNetNuke.HttpModules.Exceptions.ExceptionModule, DotNetNuke.HttpModules" preCondition="managedHandler" />
<add name="UsersOnline" type="DotNetNuke.HttpModules.UsersOnline.UsersOnlineModule, DotNetNuke.HttpModules" preCondition="managedHandler" />
<add name="DNNMembership" type="DotNetNuke.HttpModules.Membership.MembershipModule, DotNetNuke.HttpModules" preCondition="managedHandler" />
<add name="Personalization" type="DotNetNuke.HttpModules.Personalization.PersonalizationModule, DotNetNuke.HttpModules" preCondition="managedHandler" />
<add name="Analytics" type="DotNetNuke.HttpModules.Analytics.AnalyticsModule, DotNetNuke.HttpModules" preCondition="managedHandler" />
<add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule, Telerik.Web.UI" preCondition="managedHandler" />
<add name="UploadHttpModule" type="Brettle.Web.NeatUpload.UploadHttpModule, Brettle.Web.NeatUpload" preCondition="managedHandler" />
</modules>