==[[PhplistDocumentation Phplist Documentation]] » [[PhpListConfiguration Configuring phplist]] » == ---- ====FCKEditor==== [[http://www.fckeditor.net/ FCKEditor]] is the HTML editor included with the phpList distribution archive. It can be used to create and edit email messages and message templates. FCKeditor will also allow you to upload images to the phpList directory on your website, which can then be linked to from within your messages. By default, after installing phpList, FCKEditor will allow you to link to an image on your site when you click on the image icon. But it will not let you upload an image till you have created the upload directory and set the correct read/write permissions. To enable this: - Create a folder in your phpList root directory called '##uploadimages##', or any other name you defined for the ##FCKIMAGES_DIR## in your ##config.php## file (see below). - Change the permissions of this folder to allow write access (e.g., "##chmod 755 uploadimages##"). The image selection window in FCKEditor will then automatically change to allow uploading images to this folder and thus permit you to link to them in your messages. No changes to the ""FCKEditor"" configuration are required. %%(php) # If you want to upload images to the FCKeditor, you need to specify the location # of the directory where the images go. This needs to be writable by the webserver, # and it needs to be in your public document (website) area # the directory is relative to the root of phpList as set above # This is a potential security risk, so read README.security for more information define("FCKIMAGES_DIR","uploadimages");%% === Editor window === You can change the size of the FCKeditor window on the [[ConfigurePhplistInfo configuration]] page. This might be useful for big size monitor screens. === Disabling FCKeditor === FCKeditor is enabled by default. If you want to use the TinyMCE editor instead, or if you don't want to use any editor, you can disable FCKeditor with the following setting in the ##config.php## file: %%(php) # the FCKeditor is now included in phpList, but the use of it is experimental # if it's not working for you, set this to 0 # NOTE: If you enable TinyMCE please disable FCKeditor and vice-versa. define("USEFCK",0);%% === Configuring FCKeditor === Some configuration option can be found in the ##lists/admin/fckphplist.php## file. Be careful when applying changes to this file and make sure you have a backup copy. For more information on using and configuring FCKeditor, see the [[http://wiki.fckeditor.net/ FCKeditor documentation wiki]] and the [[http://fckeditor.biz/ FCKeditor Forum]]. === Troubleshooting FCKeditor === Please consult the [[http://wiki.fckeditor.net/Troubleshooting FCKeditor troubleshooting documentation]] See also: [[http://docs.cksource.com/FCKeditor_2.x/Users_Guide FCKeditor user guide]] === Tips & Tricks from the forum === [[http://forums.phplist.com/viewtopic.php?p=44338#44338 Fix for FCKeditor fullpage editing]] [[http://forums.phplist.com/viewtopic.php?t=8877 Fix for FCKeditor blank page]] **Related pages** - [[TinyMCE TinyMCE Editor]] - [[PhpListConfiguration Configuring phplist]] - [[ConfigurePhplistInfo Configuration page]] - [[PhpListConcepts Basic phplist Concepts]] ---- [[PhplistDocumentation phplist Documentation pages]]