Recent Topics

1 Sep 23, 2004 06:54    

does anyone know how to integrate this with b2evolution?

2 Sep 23, 2004 16:56

:lol: I just glanced at the title, and thought this was some kind of crazy flame for a second.

4 Feb 10, 2005 18:02

I had a look at fckeditor and it looks interesting. How is it used inside b2evo? As an editor toolbar for making new posts and editing posts?

Is it integrated into the back office, so when you make a post, you have access to the fckeditor toolbar panel?

Looks like it could be a great way to cut past all the html coding, letting the code put in the correct tags (if my understanding is correct)

5 Mar 30, 2005 21:30

I followed what coffman said (on a development installation of B2) and nothing happens as far as I can see. I kinda expected to see a different editor appear in the back office

I musta missed something - any ideas? :-/

6 Apr 20, 2005 02:00

Coffman's instructions are very useful however where he says insert

<script type="text/javascript" src="/FCKeditor/fckeditor.js"></script>


it should really say insert the before the script already there.

I also have an issue the capital letters - on Apache on a Windoze box capital letters don't matter so much, but Linux/Apache they do, so you might try replacing the code with

<script type="text/javascript" src="/fckeditor/fckeditor.js"></script>


and make sure the directory with fckeditor in it only has lower case letters.

Hope this works for you.

To see <!--more -> and all the other b2 tags you will need to switch to the html view on the fckeditor

7 Apr 21, 2005 17:55

Seems like there is an error with the code provided. Instead of inserting this at line 83:

<script type="text/javascript">
 window.onload = function()
 {
   var oFCKeditor = new FCKeditor( 'content' ) ;
   oFCKeditor.ReplaceTextarea() ;
 }
</script>

You should insert this:

<script type="text/javascript">
 window.onload = function()
 {
   var oFCKeditor = new FCKeditor( 'content' ) ;
   oFCKeditor.BasePath	= '<Web-accessible path to FCKeditor dir> ' ;
   oFCKeditor.ReplaceTextarea() ;
 }
</script>

If you've been getting 404 errors in the typing field, this will fix that.

8 Apr 24, 2005 20:56

Great post! This got me up and running after spending a few hours trying to get it going.

I have one other question which isn't apparently obvious to me: Where do I define the directory to upload/store/use images from? The main reason I want fckeditor is cause of this functionality :)

9 Apr 28, 2005 15:53

FCKeditor works for me but there are obviously some duplications of functionality with b2evolution's form. For example file uploads, smileys, etc. b2evolutions smiley routine breaks when you use FCKeditor, so that has to be shut off. Also have to disable the AutoP renderer.

I went back to the default form until I rethink the value of the feature. I might even create a new entry form and add another Write tab to the menu. That could work.

- Rod

10 May 15, 2005 21:47

I decided to stay with fckeditor. I remmed out the spellcheck and upload link. I also disabled the smileys and quicktags toolbars. While I was at it, I set the renderers to "opt-in" because most are not needed now.

Uploads work like a charm as so do smileys. The copy and paste is great. The only problem I have experienced is with Firefox browser, I sometimes have to clear the cache and reload because something gets skewed and copy/paste doesn't work, but my understanding is that's a browser security issue.

fckeditor works like a champ! My neophyte users love it because it is like a mini word processor.

11 May 15, 2005 23:03

To be honest I ripped it out again - it was just too much hassle trying to get it to work nicely in firefox. I am considering giving MCE Tiny Editor a go, as it seems to work quite well in my Mambo installation.

If you are using firefox I strongly recommend using spellbound as your spellchecker.

12 Oct 16, 2006 20:37

sorry i can find the file to integrate the fckeditor

_edit_form-php

13 Nov 14, 2006 00:20

Do someone know how to install it on b2evo 1.8 ??? I didn't have admin/_edit_form.php :'(

16 May 07, 2007 18:14

fckeditor is another RTF similar to TinyMCE.
There's another popular RTF, can't think what its called right now, I think SMF's TinyPortal is using that RTF and fckeditor.


Form is loading...