Install the event plugin first and make sure in your user config that you are using WYSIWYG editors (check the box).
Next, follow the plugin instructions by downloading FCKEditor from its sourceforge page. Extract it to the even plugin directory which should be:
Code: Select all
../public_html/plugins/serendipity_event_fckeditor
For example, my path is:
Code: Select all
plugins/serendipity_event_fckeditor/FCKEditor/
One more configuration step is to get image browsing enabled in the editor so that you can browse to your image directory to post images. To do this, open plugins/serendipity_event_fckeditor/FCKEditor/editor/filemanager/connectors/php/config.php
and edit the following by making it true instead of false:
Code: Select all
$Config['Enabled'] = false ;
Code: Select all
$Config['UserFilesAbsolutePath'] = '/home/user/publichtml/uploads/' ;
Code: Select all
$Config['ChmodOnUpload'] = 0755 ;
$Config['ChmodOnFolderCreate'] = 0755 ;