Start a conversation

Unable to access the settings for a Host page

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.

  1. Log in to your Database with your SuperUser rights.
  2. 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 /*
 
Confirmation: Open the host page and navigate to the settings and it won't give any error.
Choose files or drag and drop files
Was this article helpful?
Yes
No
  1. Priyanka Bhotika

  2. Posted

Comments