DNN cutechat installation

  •  11-09-2009, 11:41 AM

    DNN cutechat installation

    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?
View Complete Thread