CuteEditor升级到6.5之后,在IE 6中打开,显示错误信息:Failed to load impl code!

后来发现是IIS 7启用了动态内容压缩(dynamic content compress) 引起的。

解决方法:取消“CuteSoft_Client”的动态内容压缩,在CuteSoft_Client文件中增加以下配置的web.config文件:

<configuration>
<system.webServer>
<urlCompression doStaticCompression="true" doDynamicCompression="false" />
</system.webServer>
</configuration>



相关文章:

  • 2022-12-23
  • 2022-01-03
猜你喜欢
  • 2021-10-24
  • 2022-12-23
  • 2021-09-27
  • 2021-07-17
  • 2021-09-19
  • 2022-12-23
  • 2021-10-17
相关资源
相似解决方案