TinyMCE and Internet Explorer / Opera

For questions and problems with the CMS core. This board is NOT for any 3rd party modules, addons, PHP scripts or anything NOT distributed with the CMS made simple package itself.
Locked
tigercat

TinyMCE and Internet Explorer / Opera

Post by tigercat »

I normally use Firefox for every web based work. Everything works fine (CMSMS and TinyMCE).
But a friend of mine will probably work with IE. So I tested the site with IE. Bad awakening. The complete input area is missing (see screenshot).
Also tested with Opera. Only the HTM -content is shown.

How can I get TinyMCE work with them nice tools?

System:
CMSMS 0.11beta
TinyMCE 2.0 RC3 (happens the same way with 1.2)
IE 6.0 (if I visit http://tinymce.moxiecode.com/example_fu ... ample=true IE works fine)
Opera 8.50 (The example on http://tinymce.moxiecode.com/example_fu ... ample=true does not work either)

[attachment deleted by admin]
tigercat

Re: TinyMCE and Internet Explorer / Opera

Post by tigercat »

Hi everybody.

This is really curious. Problem still unsolved. Still editing module file TinyMCE.module.php.
Some more tries ... see below.

(1) I am using this code for TinyMCE to run within CMSMS:

Code: Select all

<__script__ type="text/javascript" src="http://localhost/test/cmsms/modules/TinyMCE/tinymce/jscripts/tiny_mce/tiny_mce.js"></__script>
<__script__ type="text/javascript">
	tinyMCE.init({
		mode : "exact",
		theme : "advanced",
		elements : "content_en",
		content_css : "../stylesheet.php?templateid=6", /* file path is automatically generated by PHP */
		theme_advanced_buttons1_add : "fontselect,fontsizeselect",
		theme_advanced_buttons2_add_before: "cut,copy,paste,separator",
		theme_advanced_toolbar_location : "top",
		theme_advanced_toolbar_align : "left",
		theme_advanced_path_location : "bottom",
	});
</__script>
This code shown with FIREFOX 1.0.6 Potable works FINE .. Workarea is shown.
This code shown with INTERNET EXPLORER does NOT WORK at all .. it only shows HTML code.
This code shwon with OPERA 8.50 does NOT WORK at all .. it only shows HTML code.



(2) If I use some kind of very basic settings it even WORKS WITH INTERNET EXPLORER.

Code: Select all

<__script__ type="text/javascript" src="http://localhost/test/cmsms/modules/TinyMCE/tinymce/jscripts/tiny_mce/tiny_mce.js"></__script>
<__script__ type="text/javascript">
	tinyMCE.init({
		mode : "textareas",
		theme : "simple"
	});
</__script
But now the button for inserting an image is missing .. I need it ..
It seems that theme="simple" is the only way to get TinyMCE work within CMSMS?


I wonder if this is a problem of CMSMS. Probably the settings of TinyMCE and CMSMS interact and cause problems.
For any further ideas I will be very thankful.
cyberman

Re: TinyMCE and Internet Explorer / Opera

Post by cyberman »

Hmm, with TinyMCE 2.0.1 it works for me ...
jah
Forum Members
Forum Members
Posts: 147
Joined: Thu Dec 30, 2004 9:09 am

Re: TinyMCE and Internet Explorer / Opera

Post by jah »

WYSIWYG editors are not working in the current versions of Opera because it lacks support for designMode. It seems like this will be implemented in version 9.
cyberman

Re: TinyMCE and Internet Explorer / Opera

Post by cyberman »

Thx - a little correction
cyberman wrote: Hmm, with TinyMCE 2.0.1 it works for me ...
... with Firefox and IE  :).
Locked

Return to “CMSMS Core”