DNN user logged out

Last post 02-26-2010, 2:26 PM by rsj. 2 replies.
Sort Posts: Previous Next
  •  02-26-2010, 11:56 AM 59017

    DNN user logged out


    I installed CuteEdit on DotNetNuke site yesterday using the DotNedNuke 4.x integration package. When a user loads a page (apparently any page) that uses CuteEdit, the next action that requires a postback (save, cancel, select another page, etc) results in the user being presented with the login page. I found some old information in the Forum about this issue related to child portals (which this is), but nothing current.
     
    We are running:
    DNN 04.09.02
    Cute Editor for .NET 6.6
    Browser is IE 7
     
    Thanks,
    rsj
  •  02-26-2010, 12:01 PM 59018 in reply to 59017

    Re: DNN user logged out

    rsj,
     
    Please open App_Code\Global.asax.vb file.
     
    Add this code in function Global_BeginRequest :
     
       If (app.Request.FilePath.IndexOf("/CuteSoft_Client/CuteEditor/", StringComparison.OrdinalIgnoreCase) <> -1) Then
        Dim query As String = app.Request.Url.Query
        If query <> Nothing And query.StartsWith("?") Then
         query = query.Substring(1)
        End If
        app.Context.RewritePath(app.Request.FilePath, "/fixdnnsubportalproblem", query, False)
       End If
     
     
    Keep me posted

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

  •  02-26-2010, 2:26 PM 59023 in reply to 59018

    Re: DNN user logged out

    Adam-
     
    Thanks so much for the prompt response.
    The fix seems to have solved our problem.
    Thanks again for your help.
     
    Regards-
    Rick
View as RSS news feed in XML