WYSIWYG Editor

4 posts by 2 authors in: Forums > CMS Builder
Last Post: November 14, 2013   (RSS)

By Dave - November 14, 2013

Hi dmn,

I haven't seen that problem before and we'd have to debug it to know for sure but try this quick fix: 

Edit: /cmsAdmin/3rdParty/tiny_mce/tiny_mce_gzip.php

Find this line (search for disk_cache):     "disk_cache" => true,

And change true to false:     "disk_cache" => false,

Let me know if that works for you.

Dave Edis - Senior Developer
interactivetools.com

By dmn - November 14, 2013

Thanks for the reply Dave, I solved the problem by changing the path to the cache in tiny_mce_gzip.php, line 202,203 from this

// Set cache file name
    $cacheFile = $this->settings["cache_dir"] . "tiny_mce_cache." . $hash . ($supportsGzip ? ".gz" : ".js");

to this

    // Set cache file name
    $cacheFile = $this->settings["cache_dir"] . "data/tiny_mce_cache." . $hash . ($supportsGzip ? ".gz" : ".js");

it's been working great ever since.

By Dave - November 14, 2013

Ok, thanks for the update and glad it's working now.  Cheers!

Dave Edis - Senior Developer
interactivetools.com