How do I load modules in a cached page
Well, starting in Version 1.0.7, you can load modules into a cached page! (so you can cache the rest of the page, but update any number of module positions!!!). To do that, install or upgrade to Version 1.0.7, and then edit your template file. Find the line that loads the module position that you want loaded (looks like )... Now RIGHT around it (just outside of the brackets, add the following lines. IT IS IMPORTANT THAT THEY LOOK EXACTLY LIKE THIS. You can change 'left' and '2', but leave everything else exactly the way it is, or it won't work... Before (NOTE, change left to the position you want, and the number is the style.
<!--CacheLoadModule-left:2:-->
After (This MUST BE EXACT) <!--EndLoadModule--> That's it!!! Now all you need to do is save the template, and clear the cache. Those modules should be automatically refreshed (with very little performance loss). Here's an example... Prior to being modified (what to look for) <?php mosLoadModule('right', -3); ?> After Modification <!--CacheLoadModule-right:-3:--> <?php mosLoadModule('right', -3); ?> <!--EndLoadModule-->
|

