Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

FCKeditor

17891012

Comments

  • symbols are saved as html-entities if the user inputs in cyrrillic through fckeditor.. any way to preserve the original symbols? thanks
  • I've managed to add a Spell Check button to FCKEditor today. I used "SpellerPages" rather than "IE Spell" and it seems to work correctly in both IE and FireFox. These are the steps I followed: 1. Edit js/fckeditor/fckconfig.js and change: FCKConfig.SpellChecker = 'ieSpell' ; to FCKConfig.SpellChecker = 'SpellerPages' ; 2. For Linux you must also edit js/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php and: comment out $aspell_prog = '"C:\Program Files\Aspell\bin\aspell.exe"'; and uncomment //$aspell_prog = 'aspell'; For a Windows server, you wouldn't do this. Note - I have only tested these steps on Linux, not Windows. 3. Edit extensions/FCKeditor/config.js and: Add a "," to the end of this line: ['Link','Unlink','-','Smiley','SpecialChar','Image','-','Video','-','FitWindow' ] Then add a new line after it: ['SpellCheck'] You may need to clear your browser cache and close/reopen your browser before this will work.
  • I'm not sure why I'm having trouble installing FCK. As stated in the Readme.txt, I downloaded the FCKeditor_2.6.3 package, as well as the latest extension package. Unzipped all, the copied all the files from the extension to "www/forum/extensions", which makes the path to the extension's default.php file this: "www/forum/extensions/FCKeditor/default.php". Then I copied the unzipped FCKeditor 2.6.3 package to "www/forum/js", which makes the path to the package's fckconfig.js file this: "www/forum/js/FCKeditor/fckeditor.js". (NOTE: I did have to rename the /js/FCKeditor folder from /js/fckeditor (previously in lowercase, now in upper) - not sure if this will make a difference). I've managed to enable the extension after changing the permissions on my extensions.php file to 7777 - otherwise didn't work. Once activated, I reverted the permissions. I log in as admin in Vanilla, and create a new post - but I cannot see the bars or anything, except for a radio button at the bottom of my text field that says "text". I cannot switch it as this is the ONLY radio button - there isn't a second choice. I'm trying to config this so it'll work, but I have a feeling something is missing somewhere. I'm not familiar enough with it, even after going through the config files, default files, js files, etc. I can't find the bug. Care to help out?
  • teecee, Thanks for spellcheck post. i have followed your instructions and I have the button showing and the spellchecker runs when I use it but keeps throwing an error! It says it cannot find 'C:\Program Files\Aspell\bin\aspell.exe' I assume this is becuase the spellchecker is looking for that file on my PC and its not there. My forum is held on a remote server. Any suggestions please? Cheers
  • Hello there, I just noticed there is now a 2.6.4 edition of this extension released out of Beta 31.1.09, I'm very new to Vanilla as in a couple of days, and would love to install it. Feeling a little lost at present. Will you be updating your installation? I'm not sure if there would be different download and installation Read.Me. Thanks in advance...
  • I'm keen on the latest version as well please, as it seems to be compatible with Safari.
  • It seems not an uncommon issue to have problems in getting this editor to work judging by many of the previous posts. I'm in the same situation, having downloaded the extension (version 2.5.4) and downloaded the editor itself and installed both into (AFAIK) the correct folders, made sure the permissions on the default.php were set to 750 (although nothing mentioned if that was necessary) I just cannot get the toolbar to display. I had the HTML Formatter installed before I attempted to install the FCKEditor and enabling FCKEditor removes the "Text/HTML" choices from below the Comment field - so something must be happening. I found the documentation a little unclear as to where the skin folders need to be loaded as they seem to appearin a few places but despite my effots nothing seems to change. In passing, the same unclear advice relates to the location of the Video folder - where should THAT go?? I was also confused by the mention of a choice reportedly offered when the extension is installed to enable the editor for all users - and I never got offered any such choice - although I have enabled the graphical editor in the individual Member Account settings. From looking at the demo it seems this editor gives me exactly what I'm after so I'm reluctant to give up on it - particularly as it obviously DOES work (for some people). Any suggestions would be gratefully received. Dave Edited to add: The comment above about changing the name of the subfolder in the js folder to "FCKeditor" appears to be the key!! Having made that change the menu immediately works!!!
  • I upgraded FCKEditor to the latest version today and my forum now works properly with Safari: 1. Download the latest FCKEditor from fckeditor.net and install this as per the intructions in the Extension's readme.txt 2. Edit extensions\FCKeditor\default.php and change this: // only detect safari if ((stristr($navigator_user_agent, "konqueror")) || (stristr($navigator_user_agent, "safari"))) { $browser = 'safari'; $dom_browser = true; } return $browser; Just replace: $browser = 'safari'; With something like: $browser = 'xxx'; I also changed: $Context->Dictionary['VisualEditingPreference'] = 'Enable Visual editing toolbar <small>(not compatible with Safari Browser)</small>'; to: $Context->Dictionary['VisualEditingPreference'] = 'Enable Visual editing toolbar <small>(now compatible with Safari Browser)</small>';
  • ^billdoody Sorry, I probably can't help you much. Are you on a Windows or Linux server? Check that and then review my notes. :o)
  • ah. I'm about on my tenth installation of this extention. I'm very confused about the directions, and have tried installing it with a web builder with no luck. would someone mind emailing me with some help? please???
  • ok I keep getting this in the text box where the editor should be, when I turn on the extention:


    Page Not Found

    The page you tried to access does not exist on this server. This page may not exist due to the following reasons:

    1. You are the owner of this web site and you have not uploaded (or incorrectly uploaded) your web site. For information on uploading your web site using FTP client software or web design software, click here for FTP Upload Information.

    2. The URL that you have entered in your browser is incorrect. Please re-enter the URL and try again.

    3. The Link that you clicked on incorrectly points to this page. Please contact the owner of this web site to inform them of this situation.

    Um, I've uploaded the thing a dozen times I thought I followed directions pretty well...
  • got it mostly working now.... some problems include the posts not saving the font size, video embedding window does not close, and the templates do not work....
  • Having a strange issue with adding video. When I add a youtube video and click "OK", I see the flash logo show up in the body but the video popup window doesn't auto close.... I either have to click cancel or click the "x" on the video pop up window for it to close. The video still shows correctly in the post. Why wouldn't the pop up auto close when clicking OK?
  • Just a thought here. The FCKeditor allows you to adjust the size of fonts (amongst other things). The problem is that this uses <span style="blah"> and by default FCKeditor doesn't allow style settings withing a <span>. Took me a bit to figure that out, I enabled it and it all started working again. Not sure if there is a particular reason this is not allowed by default.
  • All installed OK. Had to capitalise the folder as mentioned here.
    The tweak for Safari (above from Teecee) also worked to fix it for Google Chrome. Very nice.
    Next, I'll try the "Global Preference" extension to see if I can force it on by default. (Set Extension,Go to its settings Enter VisualEditing and then 1 and click send).
  • For some reason the colour button does nothing - I get a colour change in the actual input field, but if I submit or preview it it doesn't change colour. Also if I hit edit, it will have colour in the edit field.

    Do I need some other extension to get this to work?
  • Also how do I get firefox spell checker to work so it doesn't just underline the word but also if you right click gives suggestions.
  • Im having the same problem as Leo.
    I've followed the instructions given, here and in the help me file. The tool bars still do not show up.

    Im now running 1.1.8 vanilla and the 2.5.4 Fckeditor.
    Can I get an install package that has everything enabled and I'll turn off what I do not want?

    Side note: In the config.js and setting.php, thoose line items are already in there. Do I need to add these lines again or in a different area in the file?
  • 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
    *************************************
    its not working for me either, tried it on every browser, i'm seeing nothing!!! note i'm also using notifi plugin, could there be a conflict?
  • this is long outdated.. can anyone post an update how this extension works with new FCKeditor ?
Sign In or Register to comment.