host posted on October 07, 2006 23:33

Steps for Blowery Compression:
Note: You must disable this feature whenever attempting a DotNetNuke upgrade.
- Download the library from blowery.org (Binary Only). We use the latest build.
- Open the zip file and copy the binary .dll files from the Module folder into your Bin folder on your DotNetNuke installation.
- Add the following code snippets to your web.config :
Within <configSections> add -
<sectionGroup name="blowery.web">
<section name="httpCompress" type="blowery.Web.HttpCompress.SectionHandler, blowery.Web.HttpCompress"/>
</sectionGroup>
Within <configuration> add -
<blowery.web>
<httpCompress preferredAlgorithm="deflate" compressionLevel="high">
<excludedMimeTypes>
<add type="image/jpeg"/>
<add type="image/gif"/>
</excludedMimeTypes>
<excludedPaths>
<add path="NoCompress.aspx"/>
</excludedPaths>
</httpCompress>
</blowery.web>
Within<httpModules>add -
<add
-
name
="CompressionModule"
-
type
=
-
"blowery.Web.HttpCompress.HttpModule,
blowery.web.HttpCompress"
/>
-
Save the web.config and test out the compression
www.dnncreative.com