Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • jlacis 19 posts 39 karma points
    Feb 21, 2014 @ 15:37
    jlacis
    0

    Umbraco 6.0.4 backoffice. memory leak?

    Hello, everyone.

    we use umbraco 6.0.4 for our project. it's a simple site with 15-20 pages.

    the problem is that, if I login into backoffice and just navigate between sections, any requests on the web are not being processed anymore.

    steps to reproduce:

    1. go to your umbraco website and navigate between pages - all is fine

    2. then login to backoffice, using the same tab.

    3. navigate between section

    4. logout from backoffice

    5. go back to the website in the same browser tab

    6. all website freezes. no requests being processed.

     

    we checked umbraco source files and added more logging do find the root of the problem.

    all we could find is that request freezes after 

     app.PostResolveRequestCache += (sender, e) =>

                    {

                        var httpContext = ((HttpApplication)sender).Context;

                        ProcessRequest(new HttpContextWrapper(httpContext));

                    };

    execution in  Umbraco.Web.UmbracoModule class. method Init(HttpApplication app)

     

    did anyone have the same problem?

    and how it can be resolved?

  • jlacis 19 posts 39 karma points
    Feb 24, 2014 @ 08:43
    jlacis
    0

    after some more debugging we noiced, that, when user login into backoffice and then logs out and goes to the website, additional items are being added to http context items withh keys 'object'. values are also object

Please Sign in or register to post replies

Write your reply to:

Draft