Is it possible to turn off gzip compression for TinyMCE? From looking through the core code (via Reflector), there's a config setting called "GzipEnabled" - but I can't find where it's set. Any ideas?
A little background to this problem, (just in case it's a red herring). A couple of our clients are having (random) problems in IE6. Using Fiddler we noticed that sometimes "tinymce3tinymceCompress.aspx" was failing to load. I've heard that gzip support in IE6 is a bit hit-n-miss. So I'd like to disable the gzip compression to see if that resolves it.
Apparently the code for the configuration is there (in GzipModule.cs), but it's hardcoded, not really read from a config file.
I run into a similar issue, tinymce3tinymceCompress.aspx takes about 30 seconds to load and it's being loaded every time a page is loaded or published.
Apparently there is also configuration for the cache folder but it isn't set nor read from anywhere (again), so it's not being cached in the server. And for some reason my browser is not caching it either.
More details, actually I was looking at some old code (apparently trunk doesn't contain the latest, 4.5 is being developed on branch 4.1.0).
So, now it seems there is code for reading tinymce gzip configuration from the config file, but I don't see a way to make it working. I add a section to configSections in web.config:
An error occurred creating the configuration section handler for TinyMCE: Type 'umbraco.editorControls.tinyMCE3.webcontrol.plugin.ConfigSection' does not inherit from 'System.Configuration.IConfigurationSectionHandler'.
Looks to me that the ConfigSection should implement IConfigurationHandler like the error and MSDN suggest. Anybody tried this code before?
TinyMCE: Disable gzip compression?
Is it possible to turn off gzip compression for TinyMCE? From looking through the core code (via Reflector), there's a config setting called "GzipEnabled" - but I can't find where it's set. Any ideas?
A little background to this problem, (just in case it's a red herring). A couple of our clients are having (random) problems in IE6. Using Fiddler we noticed that sometimes "tinymce3tinymceCompress.aspx" was failing to load. I've heard that gzip support in IE6 is a bit hit-n-miss. So I'd like to disable the gzip compression to see if that resolves it.
Thanks, Lee.
Apparently the code for the configuration is there (in GzipModule.cs), but it's hardcoded, not really read from a config file.
I run into a similar issue, tinymce3tinymceCompress.aspx takes about 30 seconds to load and it's being loaded every time a page is loaded or published.
Apparently there is also configuration for the cache folder but it isn't set nor read from anywhere (again), so it's not being cached in the server. And for some reason my browser is not caching it either.
More details, actually I was looking at some old code (apparently trunk doesn't contain the latest, 4.5 is being developed on branch 4.1.0).
So, now it seems there is code for reading tinymce gzip configuration from the config file, but I don't see a way to make it working. I add a section to configSections in web.config:
And the actual configuration immediately below:
But I get the exception:
An error occurred creating the configuration section handler for TinyMCE: Type 'umbraco.editorControls.tinyMCE3.webcontrol.plugin.ConfigSection' does not inherit from 'System.Configuration.IConfigurationSectionHandler'.
Looks to me that the ConfigSection should implement IConfigurationHandler like the error and MSDN suggest. Anybody tried this code before?
I fixed this, at least temporarily, by turning off static content compression in IIS.
is working on a reply...