You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a site that uses Umbraco.
The site renders as expected with Request Reduce.
However the Umbraco back office renders incorrectly (more than one and head in page etc...)
I nice way to get around this issue would be to ignore the Umbraco back office pages for Request Reduce
Is there anyway to configure RequestReduce to ignore the Umbraco back office?
I tried the "javascriptUrlsToIgnore" property by setting it to "/umbraco/" but that didn't work
The text was updated successfully, but these errors were encountered:
I had a similar issue, but it was with another part of the site. I was able to ignore certain urls using the PageFilter API on the url path with the following code (VB.net):
Namespace WSC
Public Class StartupModule
Implements IHttpModule
Private Shared _lockObj As New Object()
Private Shared _ran As Boolean = False
Public Sub Dispose() Implements IHttpModule.Dispose
End Sub
Public Sub Init(context As HttpApplication) Implements IHttpModule.Init
'-- lock
If Not _ran Then
SyncLock _lockObj
If Not _ran Then
' everything we do here is blocking
' on application start, so we should be quick.
RequestReduce.Api.Registry.AddFilter(New RequestReduce.Api.PageFilter(Function(x) Not x.HttpRequest.Url.Host.Contains("/specsheet.aspx")))
_ran = True
End If
End SyncLock
End If
End Sub
End Class
End Namespace
I have a site that uses Umbraco.
The site renders as expected with Request Reduce.
However the Umbraco back office renders incorrectly (more than one and head in page etc...)
I nice way to get around this issue would be to ignore the Umbraco back office pages for Request Reduce
Is there anyway to configure RequestReduce to ignore the Umbraco back office?
I tried the "javascriptUrlsToIgnore" property by setting it to "/umbraco/" but that didn't work
The text was updated successfully, but these errors were encountered: