Error: The user is trying to access to the settings for the host page to change the skin; however, they receive the error message as shown below.
"Error: is currently unavailable. DotNetNuke.Services.Exceptions.ModuleLoadException: Value of '12/31/9999 11:59:59 PM' is not valid for 'SelectedDate'. 'SelectedDate' should be between 'MinDate' and 'MaxDate'. Parameter name: SelectedDate ---> System.ArgumentOutOfRangeException: Value of '12/31/9999 11:59:59 PM' is not valid for 'SelectedDate'. 'SelectedDate' should be between 'MinDate' and 'MaxDate'. Parameter name: SelectedDate at Telerik.Web.UI.RadDatePicker.set_SelectedDate(Nullable`1 value) at DotNetNuke.Modules.Admin.Tabs.ManageTabs.BindTab() at DotNetNuke.Modules.Admin.Tabs.ManageTabs.OnLoad(EventArgs e) --- End of inner exception stack trace ---"
Root Cause: The user is doing an upgrade and that is affecting the date value being there which had to be adjusted manually.
Additional Note: Prior to any change the date value should be adjusted manually.
Workaround:
The solution below is intended for clients.
Pre-requisites: The user must have an Administrator Rights.
- Log in to your Database with your SuperUser rights.
- Set these old assigned values to NULL by executing the following queries; Please only use one of them from below, depending on if you have a tab name or id name.
Additional Note: These values are set to "NULL" by default.
update Tabs set EndDate='NULL' where TabID= /*enter your tab id here */
update Tabs set EndDate='NULL' where TabName= /*enter your tab name here /*
Comments
0 comments
Please sign in to leave a comment.