I just upgraded from TinyMCE 2.1.2 to the newest 3.0.8 using the installer package/download from the Resources site. Now, my spellchecker is gone.
It was working just fine before the upgrade, now I can’t even get the button to show up.
I’ve tried reinstalling TinyMCE (full package) and then just the spellchecker module. I’ve downloaded the newest version of the spellchecker from the dev site and no luck.
Any one else have this issues? Any ideas what to try? The spellchecker is pretty important on this site.
Thanks!
JK
Quote from: minder at Mar 24, 2008, 03:42 AM
I don’t know why but I can’t force TinyMCE 3.0.3 to work in IE. I created TV edytorContent for TinyMCE and used it in NewsPublisher’s form template like this:
(...)
<fieldset>
<legend>Treść</legend>
<p><label for="">Wstęp:</label><textarea name="introtext" cols="50" rows="5">[+introtext+]</textarea></p>
<p><label for="">Treść:</label>[*edytorContent*]</p>
<p class="submit"><input name="send" type="submit" value="Dodaj" /></p>
</fieldset>
(...)
Everything works perfect in Mozilla and Opera, but that dumb IE displays plain textarea. TinyMCE failed to initialise? Why?
Any suggestions?
P.S.
IE displays warning icon which shows "object expected" message when clicked.
Hey guys. Just found the reason why this particular problem occurs. Definitely a silly issue dealing with IE and BASE tags. Check out the following post on the TinyMCE forums should this be an issue for you:
http://tinymce.moxiecode.com/punbb/viewtopic.php?id=10245
Jeff Whitfield
"I like my coffee hot and strong, like I like my women, hot and strong... with a spoon in them."
Quote from: uxello at May 07, 2008, 02:37 AM
A couple of strange things going on for me with version 3.0.8 using IE7 (it works fine with Firefox)
1) Create 2 or more paragraphs and try and set the second or subsequent paragraph to a heading, say ’Heading 2’. Always the first paragraph style is changed.
2) Create a table and try and insert a new row using the right click menu. It does not work. All the right click functionality does not work, it seems to be ignoring the table being clicked on. The table toolbar buttons do work however.
Both these worked fine with 3.0.3. I went to the moxiecode site and tried using their demo page and it works fine...!?!
Anyone else seeing this problem with 3.0.8?
Thanks,
Richard
Seems that TinyMCE 3.0.8 has a problem with IE and frames:
http://tinymce.moxiecode.com/punbb/viewtopic.php?pid=37126#p37126
Problem will be fixed in TinyMCE 3.0.9, which should be released soon.
Jeff Whitfield
"I like my coffee hot and strong, like I like my women, hot and strong... with a spoon in them."
-
MODX Staff
- 12,272 Posts
paulb are you running any flavor of MySQL 5.0.51? If so, that’s your problem and it will cause issues other places in MODx as well.
Ryan Thrash, MODX Co-Founder
Follow me on Twitter at @rthrash or catch my occasional unofficial thoughts at thrash.me
Quote from: paulb at May 21, 2008, 03:28 PM
The file browser included with it still does not sort files alphabetically though. I looked in the code at GetFoldersAndFiles.php and there is a line that says natcasesort($files), which should work, but no matter what I do I can’t make it work for files. It’s working fine for folders -- natcasesort($folders_array); -- which makes it even more frustrating that it won’t work for files. I commented out the natcasesort($files) line and put in sort($files) instead. The result is case sensitive, which isn’t ideal, but natcasesort wasn’t working at all, so sort($files) is better than nothing.
There is an example of case insensitive sorting in the PHP manual -- if you add this line:
usort($files, create_function('$a,$b','return strcasecmp($a,$b);'));
after line 81
array_push($files,$filename);
it correctly sorts alphabetically, case-insensitively.
Perhaps this could be incorporated in 0.9.6.2 ?
Author:
ManagerManager plugin - customise your ModX manager interface
Rckt - web development, Sheffield, UK