Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with Facebook Sign In with Google Sign In with OpenID Sign In with Twitter

Categories

In this Discussion

Who's Online 10

CurtisOdenericgilletteleafmonster +7 guests

Tinymce

This discussion is related to the Tinymce addon.
Tinymce
«134

Comments

  • I installed TinyMCE and it's nice, except when I want to use Unicode accented characters it replaces them with question marks. How can I change this?
  • Well actually I did that, and TinyMCE is set to utilize UTF-8 encoding by default. I just did a test, turning off TinyMCE and guess what, the problem persists.

    So something has changed in Vanilla since 1.0.1 that turns accented characters like this--itarataś cārtheṣv abhijñaḥ svarāṭ--into question marks. Any idea what that might be? Is Unicode turned off in the header or something?

    DBH
  • Posts: 1,799
    well if u look at the header unicode is not there. I do not know how to enable it u should search this forum for it
  • Posts: 18
    I can't seem to get Vanillacons to work with TinyMCE. Is this expected? Any chance TinyMCE will come with some prepackaged smilies as well?
  • Posts: 24
    Hi, I'm trying to install this feature but I'm have no luck. I activated it in the 'Extensions' area, is there anything else I need to do? Do I need to use a specific style perhaps?
  • Posts: 5,574
    Read the readme.
  • Posts: 1,799
    Will this help you Its how to add language packs to tinymce http://wiki.moxiecode.com/index.php/TinyMCE:LanguagePack
  • Uploaded version 1.1 of Tinymce WYSIWYG editor.
  • Posts: 1,799
    Smilies added to the new version
  • Posts: 18
    Wow. That is fast. Thanks MySchizoBuddy! Another thing I noticed is after installing TinyMCE is that the line breaks in all the previous posts on the forum are missing. So any posts posted before TinyMCE has all the lines now run together. I supposed this is inevitable right?
  • Posts: 1,880
    no, it is because you were using html formatter that convert the new line in
    . The formatter use with this extension doesn't.

    First, Schizo, you change the way the extension force the use of its formatter. Replace line 120:$Context->StringManipulator->Formatters = array();
    $Context->StringManipulator->GlobalFormatters = array();
    $Context->Configuration['DEFAULT_FORMAT_TYPE'] = "Tinymce";

    with if ( $Context->Session->UserID > 0 && $Context->Session->User->Permission('PERMISSION_HTML_ALLOWED') ) {
    //Make Tinymce formatter the only formatter available to post a new comment or to edit an old one
    $Context->Configuration['DEFAULT_FORMAT_TYPE'] = 'Tinymce';
    $Context->Session->User->DefaultFormatType = 'Tinymce';
    $Context->Session->User->Preferences['ShowFormatSelector'] = 0;
    }

    the old post will still use the previous formatter.

    Then if you want to change the line by
    , not that interesting with WYSIWYG, you can set tinyMCE to do it (I think i read it in the doc) or add a nl2br function in the new formatter.
  • Posts: 1,799
    Tinymce by default disables nl2br
    stating that paragraphs should be used instead not br tags
  • Posts: 2,610
    Or you could use AutoP.
  • Posts: 1,880
    @ MySchizoBuddy:

    I agree,
    But still, you should change the way you force the use of your formatter. Until the are edited with tinyMCE, old post should be using the previous formatter, especially if the forum was using something else than a html formatter.
  • Posts: 18
    Thanks Dinoboff, Your suggestion works perfectly!
  • Posts: 18
    @ MySchizoBuddy:
    why the Tinymce editor bar cannot show in IE?
    But it can worked in firefox.
  • Posts: 1,799
    whats ue site
  • Posts: 18
    sorry, only use it in internal
  • Posts: 2,610
    In default.php Extension Name: Tinymce

    On this site Tinymce WYSIWYG editor.

    Can we get this updated please?
  • Version number changed from 1.1 to 1.2.
  • Posts: 10
    Here, it is shown that the actual version is 1.2. But I can only download 1.1...
  • Posts: 2,610
    You're quite right fseidl, there's a version mismatch between the extension and the add-ons site.

    Schiz, while you're at it, would you mind deleting the __MACOSX directory and the .DS_Store files from the archive when you next upload? They're bugging the hell out of me :P
  • Posts: 291
    Can't see it in IE either... :/
  • Posts: 2,419
    image
    If you are creating zip archives on a Mac,
    use DS_Store Cleaner on the folder before zipping it.


    Posted: Friday, 6 April 2007 at 10:02AM

  • Posts: 1,799
    lipa whats ur website
  • JDWJDW
    Posts: 120
    I just installed this and found it works pretty well in Firefox (Mac). But I cannot get tinymce to appear at all in Safari (no surprises there) or MSIE 6 for Windows XP (big surprises there). Here's a tinymce browser compatibility chart that clearly shows support for MSIE 6 on Windows XP. But I am not seeing it appear! I double-checked all my files and everything was installed in the proper directories on my server -- but no surprises there because if I made such a mistake it wouldn't work in Firefox!

    So because tinymce supports Internet Explorer in Windows, and since I have found it not to work, I must assume something has gone awry with this Vanilla extension. I turned the extension off and then on, but that did not fix the problem.


    Yet another problem is that I am not seeing the Japanese translation appear, even though I properly installed the "ja" language pack for tinymce. I double check my installation path for each file in the /lang directories and everything is okay. But it's not showing up in Firfox even when I force the Vanilla interface to Japanese or when I force the browser encoding to Japanese.

    Thoughts?


    Thanks.
  • Posts: 1,799
    I'm looking into the IE issue

    as far as language is concerned you will have to ask that over at tinymce forum
  • JDWJDW
    Posts: 120
    Thanks for the fast reply.

    As to tinymce support, there is a forum but it appears that people with Japanese needs like mine are out of luck. And if you want support above what their forum offers, you have to pay for it with no guarantees they can solve your problem. Hmmm.

    Well, I look forward to hearing your IE test results.

    UPDATE: I have reported my FCKeditor thoughts here.
  • Uploaded version 1.3 of Tinymce.
Sign In or Register to comment.