HTTP compression, Cute Editor, DNN3

Last post 06-24-2005, 2:00 PM by Mariette. 5 replies.
Sort Posts: Previous Next
  •  05-12-2005, 10:45 PM 6640

    HTTP compression, Cute Editor, DNN3

     Hi I use HTTP compression on my site, which seems to break this text editor.
     
    Has anyone had experience with using this text editor and HTTP Compression? I use the http compression module from http://www.blowery.org/code/HttpCompressionModule.html
  •  05-13-2005, 2:27 AM 6648 in reply to 6640

    Re: HTTP compression, Cute Editor, DNN3

    Yes , the resources of CuteEditor is gzip encoded , if you have install another http compression module , the resources would not be downloaded correctly .
     
    to fix this problem , you could add appSettings into web.config as :
     
    <add key="CuteEditorEnableGZip" value="False" />
     
    Regards , Terry .
  •  05-13-2005, 6:04 PM 6670 in reply to 6648

    Re: HTTP compression, Cute Editor, DNN3

    I use the blowery binary too but do not have any problems at all with Cute Editor, with or without the appsetting
  •  05-13-2005, 8:07 PM 6674 in reply to 6670

    Re: HTTP compression, Cute Editor, DNN3

    Thanks, the appsetting worked great.
    Mariette, could you post your config section for the blowery module? This was mine:-
        <httpCompress preferredAlgorithm="gzip" compressionLevel="high">
          <excludedMimeTypes>
            <add type="image/jpeg"/>
            <add type="image/gif"/>
            </excludedMimeTypes>
          <excludedPaths>
          </excludedPaths>
        </httpCompress>

  •  05-14-2005, 1:51 PM 6683 in reply to 6674

    Re: HTTP compression, Cute Editor, DNN3

    Hi Scott,
     
    This is mine:
     
    <blowery.web>
    <httpCompress preferredAlgorithm="gzip" compressionLevel="high">
    <excludedMimeTypes>
    <add type="image/jpeg"/>
    <add type="image/gif"/>
    </excludedMimeTypes>
    <excludedPaths></excludedPaths>
    </httpCompress>
    </blowery.web>
     
    Bye
    Mariette
  •  06-24-2005, 2:00 PM 7992 in reply to 6648

    Betreft: Re: HTTP compression, Cute Editor, DNN3

     cutechat wrote:
    Yes , the resources of CuteEditor is gzip encoded , if you have install another http compression module , the resources would not be downloaded correctly . to fix this problem , you could add appSettings into web.config as : 
    <add key="CuteEditorEnableGZip" value="False" />
     
    You also need to add this if you use native compression in IIS 6.0 as I found out some days ago.
View as RSS news feed in XML