Page 1 of 1

[solved] WYSIWYG buttons in IE9 not working for cmsms 1.9.3

Posted: Thu Mar 03, 2011 11:49 am
by SolsWebdesign
Hello, I recently upgraded my client's site to cmsmadesimple 1.9.3 which works fine in Firefox but not in IE9. Since my client uses IE9 she is not too happy. I also installed IE9 and indeed the cmsmadesimple 1.9.1 site works fine but 1.9.3 does not.
The buttons (send, cancel and apply) disappear but that is not too much of a problem (on mouse over you get to see them).
Very annoying is that the WYSIWYG buttons do not work in IE9. The ones that should give you a pop-up in which you can enter images, links or other things, don't work. They don't give the popup that they do in 1.9.1 or any other CMSMS version in IE9.
Is it an IE9 issue? Then why do the WYSIWYG buttons work in all my other CMSMS sites?
Is it an 1.9.3 issue? If so, what should I do about it? I really don't feel like downgrading...
kind regards,
Isolde

Re: WYSIWYG buttons in IE9 not working for cmsms 1.9.3

Posted: Fri Mar 04, 2011 7:33 pm
by trastevere
I'm experiencing the same problem.

Re: WYSIWYG buttons in IE9 not working for cmsms 1.9.3

Posted: Mon Mar 07, 2011 6:44 pm
by Dr.CSS
IE9 is still beta not for public use at this time, why would they be using it?...

Re: WYSIWYG buttons in IE9 not working for cmsms 1.9.3

Posted: Tue Mar 08, 2011 7:04 pm
by SolsWebdesign
The version of IE9 is RC (release candidate).
I really don't want to go into the discussion of why anyone would like to use IE9 RC :-\ but I am interested in what the difference is between 1.9.1 and 1.9.3 because with 1.9.1 I find no problems. I see 1.9.4 has been released and will try 1.9.4. Hopefully it solves the problem...

Re: WYSIWYG buttons in IE9 not working for cmsms 1.9.3

Posted: Thu Mar 17, 2011 12:27 pm
by dralphs
get same thing here, running 1.9.4.1, no buttons in IE9 but working fine in IE8 or firefox 3.64
Thats using the default admin theme

Re: WYSIWYG buttons in IE9 not working for cmsms 1.9.3

Posted: Thu Mar 17, 2011 2:58 pm
by uniqu3
Pop-ups work for me on IE9 Final and 1.9.4.

That button problem is due to a css typo in Admin theme (admin\themes\NCleanGrey\css\style.css) if i am not wrong on line 1024

Code: Select all

input.pagebutton {
	cursor: pointer;
	background: transparenturl(themes/NCleanGrey/images/layout/nav.png) repeat-x left 0;
	color: #fff;
}
where it should be:

Code: Select all

input.pagebutton {
	cursor: pointer;
	background: transparent url(themes/NCleanGrey/images/layout/nav.png) repeat-x left 0;
	color: #fff;
}
Admins dont tell me changing css typo is core hacking ;)

Anyway for DEV this is what error console in IE9 outputs when on editcontent page:

Code: Select all

SCRIPT438: Object doesn't support property or method 'importPluginLanguagePack' 
editor_plugin.js, line 1 character 1
SCRIPT438: Object doesn't support property or method 'importPluginLanguagePack' 
editor_plugin.js, line 1 character 1
SCRIPT438: Object doesn't support property or method 'importPluginLanguagePack' 
editor_plugin.js, line 1 character 1
SCRIPT438: Object doesn't support property or method 'addPlugin' 
editor_plugin.js, line 1 character 1124
HTML1115: X-UA-Compatible META tag ('IE=7') ignored because document mode is already finalized. 
editcontent.php?sp_=f1effc95&content_id=35&page=
HTML1115: X-UA-Compatible META tag ('IE=7') ignored because document mode is already finalized. 
editcontent.php?sp_=f1effc95&content_id=35&page=
HTML1115: X-UA-Compatible META tag ('IE=7') ignored because document mode is already finalized. 
editcontent.php?sp_=f1effc95&content_id=35&page=

Re: WYSIWYG buttons in IE9 not working for cmsms 1.9.3

Posted: Thu Mar 17, 2011 6:24 pm
by Rolf
uniqu3 wrote:That button problem is due to a css typo in Admin theme (admin\themes\NCleanGrey\css\style.css) if i am not wrong on line 1024
Fixed in SVN

®olf

Re: WYSIWYG buttons in IE9 not working for cmsms 1.9.3

Posted: Fri Mar 18, 2011 11:16 am
by SolsWebdesign
YES, it works!!! I installed the SVN and it is fixed! Thank you, Rolf!

Install 1.9.4.1 and then the SVN version and the popups work again and so do the buttons.

For those not familiar with SVN read here:
http://wiki.cmsmadesimple.org/index.php ... VN_version

Re: [solved] WYSIWYG buttons in IE9 not working for cmsms 1.

Posted: Fri Jun 03, 2011 7:03 pm
by SolsWebdesign
Sadly the problem is back in 1.9.4.2 :(
So the buttons disappear again in IE. Luckily we can fix it but it would be nice if the problem didn't return with each new upgrade... ;)

Re: [solved] WYSIWYG buttons in IE9 not working for cmsms 1.

Posted: Wed Jun 22, 2011 4:38 pm
by manuel
It's indeed still present in 1.9.4.2
I've filed a bug report in the project forge to get this fixed once and for all :)
http://dev.cmsmadesimple.org/bug/view/6596

Greetings,
Manuel

Re: [solved] WYSIWYG buttons in IE9 not working for cmsms 1.

Posted: Wed Jun 22, 2011 4:50 pm
by RonnyK
The thing is fixed in SVN before 1.9.4 was released but due to the required speed for the security-fix, it was chosen to ONLY release a version with the security-fix inside. All other changes were NOT released in 1.9.4.2.

This means that the change for IE9 was NOT in, and that latest version before that has overwritten your modified version.

The change in 1026 in file style.css in folder admin\themes\NCleanGrey\css is:

Code: Select all

transparenturl


into

Code: Select all

transparent url


note the space between the two words.

Ronny