We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 16450
    • 15 Posts
    Quote from: Bravado at May 12, 2008, 10:44 AM

    @kumazatheef: I’m getting disallowed file type errors on my end so it might be related. Put this issue on my to-do list. I’m up to my ears in things to do at the moment but will try to do some bug fixing very soon. smiley

    @Bravado: I’ve been poking around but so far coming up blank. Any tips on where to start looking to try to figure out what’s going on because this is pretty crucial.

    EDIT: Also, when I click on the Resource Browsers button (for "File/URL") it goes to the ’Media’ folder instead of the ’Flash’ folder.
      • 14254
      • 35 Posts
      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
        • 4018
        • 1,131 Posts
        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."
          • 13137
          • 204 Posts
          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.

          I am finding the same thing in IE6, but noticed that this is not only happening with Format, but also with Styles, Size, and Font.
            • 4018
            • 1,131 Posts
            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."
              • 31178
              • 128 Posts
              Thanks for looking into it. That sounds promising for the next release. They seem to be going through the version numbers at a rapid rate over at TinyMCE! grin
                • 22797
                • 134 Posts
                I upgraded to version 3.08 recently and I’m quite impressed with it.

                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.

                This seems to be a lingering problem from before (see http://modxcms.com/bugs/task/1022).
                  • 25663 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
                    • 21056
                    • 327 Posts
                    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
                      • 22797
                      • 134 Posts
                      Quote from: rthrash at May 21, 2008, 04:50 PM

                      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.

                      The version on my server is 5.0.45. Is there a recommended version?

                      I’m sure you know what you’re talking about, but I don’t see how the MySQL version would affect a php function that doesn’t interact with MySQL. The feature that I’m referring to gets the list of files from the file structure on the server’s hard drive. Maybe I’m missing something though. Feel free to enlighten me.