John Mitchell
 Posts:4384
Administrator Send PM:
 | | 14 Apr 2008 05:26 PM | | 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 | | | |
|
|
|
OM
 Posts:42
Send PM:
 | | 14 Apr 2008 06:42 PM | | 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" /> ---
Hi John, can you post a list of modules that you know need excluding? They are mentioned in various places around your forum, but it would be nice to have an authoratative list :) I am about to start using Live Content, so I will make sure to exclude it..
Thanks
OM | | | |
|
John Mitchell
 Posts:4384
Administrator Send PM:
 | | 14 Apr 2008 07:30 PM | | That is the list that I know of right now. | | | |
|
John Mitchell
 Posts:4384
Administrator Send PM:
 | | 14 Apr 2008 08:33 PM | | I just thought of another one: ListX You don't want to put a big list of these modules in your excludes if you are not using them though. | | | |
|
mitchel.sellers
 Posts:28
Send PM:
 | | 19 Apr 2008 10:57 AM | | John,
I thought by placing an instance of page blaster on a page that you could set an Exclude Path and be ok for that page?
I just found out that I couldn't do that, as my Categorized Documents module broke, due to an issue when using Response.WriteFile() and one of the optimizations....
i resolved the issue by editing the Snapsis config....but shouldn't there be an easier way? If that is the only way, can you explain the purpose of the "Exclude Path" setting on a per instance basis of PageBlaster? | | Mitchel Sellers MCITP, MCPD, MCTS Director of Development IowaComputerGurus Inc. | |
|
John Mitchell
 Posts:4384
Administrator Send PM:
 | | 19 Apr 2008 04:55 PM | | You had the right idea about page level exclusions. I'll look into this to make sure that Page Exclusions are still working as expected. | | | |
|
Adam Wallace
 Posts:30
Send PM:
 | | 13 Aug 2008 02:19 AM | | Hi John
I've added another pageblaster instance to a new site running 4.8.4 , this time with the Telerik RadEditor Trial installed. Everything was running fine including the Rad editor for the last few days with extensive usage however the moment i installed PB the buttons on the editor no longer show. In fact i was dubious about installing it due to this post regarding PB on the telerik forum http://www.telerik.com/community/forums/thread/b311D-behgab.aspx where someone is having the same issue.
In a way I'm pleased because i had the same problem on another site but because PB was already installed i wasn't sure it was due to this but now i am. So do you know what exclusion i should add to resolve this? It's fairly easy to test, you just download the free Telerik DNN module install located under the asp.net controls here http://www.telerik.com/client.net/my-licenses/my-free-trials.aspx and then add the editor to a page and click enable.
My client has become dependent on this editor as have i so fingers crossed you have the answer.
As an aside none of the PB installs start adding cache to the folder until i have enabled debugging, this is after following the instructions. The only step i do differently is adding the license key before restarting the app. It's happened enough times that something must be up? Anyway the speed improvements you get once running make the initial issues worth the effort :)
Adam | | | |
|
Adam Wallace
 Posts:30
Send PM:
 | | 13 Aug 2008 04:13 AM | | Well i may have solved the problem, i just added RadEditor into the exclusions and the editor seems to be working fine. John is this the best way to handle it? <pathexcludefrom="All"pattern="UltraPhotoGallery|LiveContent|RadEditor">path>
Adam
| | | |
|
John Mitchell
 Posts:4384
Administrator Send PM:
 | | 13 Aug 2008 09:07 AM | | If that is the problem you are having with the Rad Controls then that is a good way to solve it. Another thing you may run into is that the Rad Controls heavily use WebResource.axd so you may also have to exclude WebResource (don't exclude all .axd).
| | | |
|
Adam Wallace
 Posts:30
Send PM:
 | | 13 Aug 2008 06:07 PM | | I replaced the RadEditor entry with WebResource.axd, cleared the cache and restarted the app on two different sites and this seems to be the only exclusion required. Hopefully there's not a tricky cache issue happening which is fooling me but it appears to be working on two sites in both IE (Maxthon wrapper) and FF3. One site also has URL Master installed and was giving me the most grief in regards to not displaying the Rad Editor buttons but now everything seems ok, so fingers crossed.
Thanks Adam | | | |
|
Rick Webster
 Posts:4
Send PM:
 | | 21 Sep 2008 02:41 PM | | OK... silly question here. Where do I add these path patterns? ActiveForums stopped working after adding PB (gets a nasty error) and I couldn't find any reference to "path patterns" or "exclusions" in the reference manual. Maybe I'm just looking too hard?  Anyhow, I'd like to exclude ActiveForums using the path pattern tag, but I simply don't know where to put this rule. Thanks,
Rick | | | |
|
Rick Webster
 Posts:4
Send PM:
 | | 21 Sep 2008 02:49 PM | | OK... I think I figured it out (feeling only a little bit smarter at this point).
I had to add PB as a module to one of my private/admin sections of the site, then I was able to paste the following into the exclusion rules: < path pattern="DesktopModules(?!Snapsis|ActiveForums)" excludeFrom="All" />
Question... Is that the right approach? I couldn't seem to find a way to do this within the [Admin --> PageBlaster] section of my site.
Rick | | | |
|
Rick Webster
 Posts:4
Send PM:
 | | 22 Sep 2008 08:28 PM | | Hello? Is there a better place to seek advice? | | | |
|
goBlanks
 Posts:13
Send PM:
 | | 26 Sep 2008 06:35 PM | | Rick,
You are on the right path, just in the wrong place for where you want to put that exclusion.
In the root of your site, look for "Snapsis.PageBlaster.config" and open it with your favorite editor or notepad, then add your line in there.
You may already have a line for excludes, and if that's the case, you can just add to it. FYI, You can also add PB as a module to the page you want to exclude and set custom values per module instance, per page. | | | My DNN Projects: NortheastOK.com, goBlanks.com | |
|
Ismet Dumlupinar
 Posts:66
Send PM:
 | | 29 Oct 2008 03:19 PM | | John, can you advice me how to exclude DotNetNuke Banners module via exclusions?
Appearently, if i have two banners under same group they won't rotate anymore if Pageblaster is placed on that page.
Thanks. | | pansiyon rezervasyon (Uses magics of PB) dnn blog (DotNetNuke News and articles) godaddy and dotnetnuke (learn how to install dotnetnuke to godaddy) Türkçe DotNetNuke (Turkish DNN Community Groups) id blog (my personal blog)
| |
|
John Mitchell
 Posts:4384
Administrator Send PM:
 | | 29 Oct 2008 03:30 PM | | Since the DotNetNuke banner module puts the banner html code into the output of the page you have to exclude the page from being cached by PageBlaster or reduce the time that it is cached and then the banner will rotate when the cache expires. To get around this, you would need a banner module that uses Ajax or Dhtml technology to rotate the banner from the client. | | | |
|
Adam Wallace
 Posts:30
Send PM:
 | | 28 Dec 2008 04:51 PM | | Hi John I was going to start a new thread but there is a problem with the forum text box loading in both FF and IE. I recently installed Markit SlideShow (http://markitmodules.com/Modules/MarkitSlideShow/tabid/166/Default.aspx ) but it’s not working correctly with Page Blaster compared with another DNN install without Page Blaster installed. Using the movie template I can see the different slides cycling on the right panel however the main image and text doesn't change and only displays the last slide in the series. I thought this may have been due to URL Master but it turns out another user has URL Master running with this module and it works fine. I tired the following exclusion: or And restarted the application but no luck. Do you have any suggestions on what exclusion rule to user? Thanks Adam | | | |
|
Adam Wallace
 Posts:30
Send PM:
 | | 05 Jan 2009 03:35 AM | | Hi John
Any ideas re the post above? I see the exclusion didn't display, i tired MarkitSlideShow and SlideShow in the xml.
Thanks Adam | | | |
|
John Mitchell
 Posts:4384
Administrator Send PM:
 | | 07 Jan 2009 03:52 PM | | Excluding SlideShow should do it: < path pattern="SlideShow" excludeFrom="All /> It might also be the .ashx file which should allready be in the list of excludes, but if not then < path pattern="\.ashx" excludeFrom="All /> | | | |
|
Adam Wallace
 Posts:30
Send PM:
 | | 07 Jan 2009 08:47 PM | | I have added both of those but still no luck. The module loads fine and the left-side slide transition even cycles through. However the main image doesn't change with it.
I have turned on debugging but that doesn't provide any clues from what i can see.
Do you have any suggestions on how i can identify the source of the issue?
Thanks Adam | | | |
|