Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
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?
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
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
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?
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
is working on a reply...