I recently upgraded a website from DNN7 to DNN8.00.04. I performed the 'Module Load Exception" to remove the errors by following this thread that fixed the errors. Here is the thread link.. http://www.dnnsoftware.com/forums/forumid/109/threadid/526660/scope/posts
The instructions are
First go to \Portals\_default\Containers, or
\Portals\ID-System\Containers directory to find the Container.ascx files
being used.
Then open these files with the editor, and remove the following two pieces of codes, the last step is to save it.
<%@ Register TagPrefix="dnn" TagName="ACTIONS" Src="~/Admin/Containers/SolPartActions.ascx" %><dnn:ACTIONS runat="server" id="dnnACTIONS" />
If the Actions control in the page can not work correctly, you can delete the following codes:
<%@ Register TagPrefix="dnn" TagName="ACTIONBUTTON" Src="~/Admin/Containers/ActionButton.ascx" %>
<dnn:ACTIONBUTTON runat="server" id="dnnACTIONBUTTON3" CommandName="PrintModule.Action" DisplayIcon="True" DisplayLink="False" />
<dnn:ACTIONBUTTON runat="server" id="dnnACTIONBUTTON3" CommandName="PrintModule.Action" DisplayIcon="True" DisplayLink="False" />
<dnn:ACTIONBUTTON runat="server" id="dnnACTIONBUTTON2" CommandName="SyndicateModule.Action" DisplayIcon="True" DisplayLink="False" />
<dnn:ACTIONBUTTON runat="server" id="dnnACTIONBUTTON4" CommandName="ModuleSettings.Action" DisplayIcon="True" DisplayLink="False" />
It fixed all of the module errors, but now my event viewer doesn't work at all. When I go to Event Viewer I get this error
Error:
View a historical log of database events such as event schedules,
exceptions, account logins, module and page changes, user account
activities, security role activities, etc. is currently unavailable.
DotNetNuke.Services.Exceptions.ModuleLoadException:
Timeout expired. The timeout period elapsed prior to completion of the
operation or the server is not responding. --->
System.Data.SqlClient.SqlException: Timeout expired. The timeout period
elapsed prior to completion of the operation or the server is not
responding. ---> System.ComponentModel.Win32Exception: The wait
operation timed out
--- End of inner exception stack trace ---
at System.Data.SqlClient.SqlConnection. (SqlException
exception, Boolean breakConnection, Action`1 wrapCloseInAction)
at
System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject
stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior,
SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet
bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
at System.Data.SqlClient.SqlCommand.RunExecuteNonQueryTds(String
methodName, Boolean async, Int32 timeout, Boolean asyncWrite)
at
System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(TaskCompletionSource`1
completion, String methodName, Boolean sendToPipe, Int32 timeout,
Boolean asyncWrite)
at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
at PetaPoco.Database.Execute(String sql, Object[] args)
at DotNetNuke.Data.PetaPoco.PetaPocoHelper.ExecuteNonQuery(String
connectionString, CommandType type, String sql, Object[] args)
at
DotNetNuke.Services.Log.EventLog.DBLoggingProvider.PurgeLogBuffer()
at Dnn.Modules.LogViewer.LogViewer. (EventArgs e)
--- End of inner exception stack trace ---
How do I fix this, or is there somewhere I can download a newer version of the Event/Log viewer by itself? I've checked Github, Codeplex, DNNForge pages and haven't found the module anywhere.
Thank you!!!