TinyMCE does not work in IE9

I use TinyMCE WYSIWYG in CMSMS (CMS Made simple), it works in all other browsers like FF, IE7.8, Google Chrome and Safari, but it doesnโ€™t work in IE9.

When I try to update any data and then save , it looks good with the message successfully save , but in fact my changes did not save it at all.

I was very tired studying this problem, but achieved nothing. :(

I saw that this is a problem that also occurs in JOOMLA 1.5X . in joomla, if we assume that we try to write something in the Editor , then all the save, apply and cancel buttons will not work.

Please help me with this unusual error.

I appreciate your efforts.

Thanks.

+4
source share
3 answers

Mark Dexter from Joomla! CMS Development says:

This is a great example of the problems we face when trying to maintain a version like 1.5 for such a long period of time. On one, we want to keep up with current 3p software versions. On the other hand, we want to maintain backward compatibility. These two goals become difficult, if not impossible, for such a long period of time (> 3 years). Mark

As a workaround, you can use JCE, which uses the much newer version of TinyMCE and its based one. http://extensions.joomla.org/extensions/edition/editors/88

Secondly, you can try manually updating TinyMCE to 3.4.x, which fixes the problem of downloading and extracting http://github.com/downloads/tinymce/tinymce/tinymce_3.4.4.zip in / plugins / editors / tinymce / jscripts / tiny _mce

Luck

+5
source

Just log out of the admin console and then log back in. But before you log in, make sure you change the URL in your browser. If its http://yourdomain.com , do http://www.yourdomain.com and then log in. This should work :) Another permanent fix for this:

or you can use more advanced editors like com_jce

0
source

Just use

 <meta http-equiv="X-UA-Compatible" content="IE=8" > 

In the title tag, IE9 should emulate IE8.

If this still doesnโ€™t work, try rendering it compatible with IE7. This is not something I would struggle with, I would enable compatibility until the next version of TinyMCE:

 <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" > 
0
source

All Articles