Error: Module Definitions is currently unavailable.
DotNetNuke.Services.Exceptions.ModuleLoadException: The file '/Admin/ModuleDefinitions/ModuleDefinitions.ascx' does not exist. ---> System.Web.HttpException: The file '/Admin/ModuleDefinitions/ModuleDefinitions.ascx' does not exist.
This is the error I get going to the module definitions page.
I upgraded from 4.9.4 to 5.1.4
In the 5.0.1 Upgrade log I have
System.Data.SqlClient.SqlException: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
[removed trace data]
at DotNetNuke.Data.SqlDataProvider.GrantStoredProceduresPermission(String Permission, String LoginOrRole)
if exists (select * from dbo.sysusers where name='DSniezak') begin declare @exec nvarchar(2000) declare @name varchar(150) declare sp_cursor cursor for select o.name as name from dbo.sysobjects o where ( OBJECTPROPERTY(o.id, N'IsProcedure') = 1 or OBJECTPROPERTY(o.id, N'IsExtendedProc') = 1 or OBJECTPROPERTY(o.id, N'IsReplProc') = 1 ) and OBJECTPROPERTY(o.id, N'IsMSShipped') = 0 and o.name not like N'#%%' and (left(o.name,len('')) = '' or left(o.name,7) = 'aspnet_') open sp_cursor fetch sp_cursor into @name while @@fetch_status >= 0 begin select @exec = 'grant EXECUTE on ' + @name + ' to [DSniezak]' execute (@exec) fetch sp_cursor into @name end deallocate sp_cursor end
I didn't notice the problem until today when I tried to add a new module, and there's no modules in the list. Everything else seems to be functioning just fine (from the user perspective.
I notice, looking through my tables trying to find a way to fix this... It seems a few of the admin modules were not upgraded.
I upgraded on saturday, and checked to make sure client stuff was still working - and since they've been active for 3 days without problems, It appears to be.
The admin stuff is not... Any idea how I can correct this without losing 3 days of client work?