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

FCKeditor

This discussion is related to the FCKeditor addon.
FCKeditor
«13456789

Comments

  • Posts: 139
    Awesome! Thanks for this, works like a charm.
  • Posts: 5
    It looks great, thanks! But now JQMedia won't play YouTube video and only shows the URL to the video. any suggestions? : http://famousforchrist.org/resources/comments.php?DiscussionID=1&page=1#Item_3
  • Posts: 1,799
    it has to be a link.
    not text
  • Posts: 5
    thanks!
  • JDWJDW
    Posts: 120
    This editor seems to be a bit better overall in my experience than tinymce. I reported tinymce problems here. Unlike tinymce, FCKeditor works in MSIE Windows and Japanese works automatically (without any separate installation headaches either). But unlike tinymce, FCKeditor doesn't auto-disable itself in Safari. Instead, it simply locks up the screen so you cannot see any icons or insert your text cursor in the field at all!

    At least tinymce prevents itself from loading at all in Safari, but FCKeditor will prevent any of your Safari users from ever posting! I would certainly love to hear a simple fix for this as it would at least make the editor usable in Firefox and MSIE. Possible?
  • Posts: 1,799
    there should be a way to disable it for safari.
    I'm looking into it
  • Uploaded version 2.2 of FCKeditor.
  • Uploaded version 2.3 of FCKeditor.
  • Posts: 1,799
    can anyone email the Video folder inside fckeditor to me
  • Posts: 54
    Mail is out
  • Uploaded version 2.3 of FCKeditor.
  • Posts: 14
    Just wondering if anyone has a solution to my problem with FCKeditor... When a user types away and has text in the box, then browses away (say by accident) and hits the back button all the text is gone.

    Is there a way to put a check to warn the user when he/she browses away their text will be gone?
  • Posts: 1,799
    I don't think FCKeditor has such a feature.
  • Uploaded version 2.4 of FCKeditor.
  • Posts: 83
    Seems to be an issue with the newest version. Causes a lot of my users to get the following:

    http://i27.photobucket.com/albums/c185/gpreston/fckeditor.jpg

    Rolling back to 2.3 and having users clear their Cache seems to fix the problem.
  • Uploaded version 2.4.1 of FCKeditor.
  • Uploaded version 2.4.1 of FCKeditor.
  • Posts: 1,799
    there isn't any new features in it except some new skins, and updated readme.
  • Posts: 83
    The 2.4.1 seems to have fixed the problem, thanks.
  • JDWJDW
    Posts: 120
    I just tried 2.4.1 and found it works fine in Firefox Mac and IE Windows (except for the slow icon loading in IE I mentioned before -- but that is a problem with the browser or FCKeditor, not MySchizoBuddy's code). I also reported here that I solved the Safari problem I was having. I just now need to set it up to work with Preview and I'll be all set. But then, after reading through this thread, it may be better to just kill Preview altogether.
  • Posts: 1,799
    u should still give it a try to preview post with fckeditor it works fine. just tested it
  • Posts: 6
    So far I'm really liking this addon. Has anyone got it to work with the Quotations add-on?
  • Posts: 8
    Hey MSB!

    Thanks for the kickass editor. The folks over at FB (www.chrisrue.com/funboard) are veddy veddy pleased with it.

    I'm only seeing one issue (which may or may not have to do with FCKeditor).
    Basically, any link with a URL longer than 100 characters will not redirect at all.
    In fact, if you hover on such a link, the target URL doesn't show in the status bar (tested in IE7). However, if you Preview the post, all links work at expected. The URLs do embed correctly & are viewable in both source editing view & the link edit box after posting.

    This is an issue for our folks for 2 reasons:
    - Links to MS download sites are never under 100 characters.
    - Links to the Funcave (www.chrisrue.com/funcave) are rarely under 100 characters either ;)

    Thanks in advance to anybody who can shed a little light on this.

    All best,
    Chris
  • Posts: 1,799
    isn't this a cosmetic issue
    the IE7 status bar has limited characters. so i will won't show u the whole url
    when u save the message does it work or no
  • Posts: 8
    Thanks for the quick response.
    Not cosmetic.
    It's doesn't show anything at all for URLs over 100 characters.
    All 101+ char URLs don't work after saving the post.

    Feel free to come visit FB (www.chrisrue.com/funboard).
    I've got a test post in the Funlab that shows the issue that you can check out if you'd like.

    More details about my implement:
    Vanilla 1.0.3
    Theme = default
    Style = cloud6
    FCKEditor = 2.4.1
    Other extensions = tons, but can send you a full list if you want
  • cwcw
    Posts: 18
    It's not working for me. My forum simply ignores the extension. Am I doing something wrong? Vanilla 1.1.2 FCKeditor 2.4.1
  • Posts: 1,799
    did u download fckeditor from fckeditor site, and read the documentation
  • Posts: 2
    i installed this editor on my forum but the buttons are missing from the comments form. if I enter html it will take some, like font properties and sizes, but not tables bgcolor, etc. Could anyone give me any suggestions? thanks.
  • Posts: 1,799
    tables and other stuff have been disabled in it.
    u have to enable them urself

    open up config.js
    Add this line right after the Autogrow line
    FCKConfig.Plugins.Add( 'tablecommands' ) ;

    then add the buttons on the toolbar
    FCKConfig.ToolbarSets["Vanilla"] = [
    ['Source','-','NewPage','Preview','Undo','Redo'],
    ['Bold','Italic','Underline','StrikeThrough','-','Subscript','Superscript'],
    ['RemoveFormat','Cut','Copy','Paste','PasteWord'],
    ['Style','FontSize','TextColor'],
    ['JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'],
    ['OrderedList','UnorderedList','-','Outdent','Indent'],
    ['Table','TableInsertRow','TableDeleteRows','TableInsertColumn','TableDeleteColumns','TableInsertCell','TableDeleteCells','TableMergeCells','TableSplitCell'],
    ['Link','Unlink','-','Smiley','SpecialChar','Image','-','Video','-','FitWindow' ]
    ] ;

    then open up settings.php
    and add this
    'table' => array('class' => 1, 'id' => 1,'cellspacing'=>1, 'cellpadding'=>1,'width'=>1, 'height'=>1, 'summary'=>1, 'align'=>1, 'border' =>1),
    'thead' => array('class' => 1, 'id' => 1),
    'tbody' => array('class' => 1, 'id' => 1),
    'tr' => array('class' => 1, 'id' => 1),
    'td' => array('class' => 1, 'id' => 1),
    'th' => array('class' => 1, 'id' => 1),

    and whatever else u require. remember u have to specicially tell it to allow it, So attributes that are not listed will be stripped away
Sign In or Register to comment.