After installation and following the deployment directions, my chat room loads an error:
PortalSettings Not Ready
I traced it to this method:
Protected Function CurrentPortal() As DotNetNuke.Entities.Portals.PortalSettings
Dim ps As DotNetNuke.Entities.Portals.PortalSettings
ps = PortalController.GetCurrentPortalSettings()
If ps Is Nothing Then
Throw (New Exception("PortalSettings Not Ready"))
End If
Return ps
End Function
Not sure how to fix this. Is there any help you can provide?