There have been frequent questions on how to exclude requests from PageBlaster so I thought I would start this thread on common exclusions that can be used. The following Highlighted exclusion paths have an extra space at the start so that the node will display properly in the forum. Some common applications that may need excluding are in the DesktopModules folder. You could just exclude everything in DesktopModules like this: < path pattern="DesktopModules" excludeFrom="All" /> However, that will disable some of the optimizations that PageBlaster does automatically so you may want to create a pattern that excludes everything in the DesktopModules folder except for DesktopModules/Snapsis like this: < path pattern="DesktopModules(?!Snapsis)" excludeFrom="All" />
Taking that a little further you can also add more module folders that you want to "exclude from this exclusion" like this: < path pattern="DesktopModules(?!Snapsis|Xmod|ActiveForums)" excludeFrom="All" /> The more you make exceptions inside the exclusion, the more work PageBlaster will have to do on every request to determin if the request should be excluded, so you may want to only exclude specific modules as they give you trouble: < path pattern="DraggableDynamicForm|AliveMP3|UltraPhotoGallery|LiveContent" excludeFrom="All" /> To exclude by specific tabid you can create a path with this pattern: < path pattern=" tabid(/|=)(161|162|163)(?!\d)" excludeFrom="All" /> The above pattern will exclude tabs 161,162, & 163, but will not exclude 1611 |