I think this info should be in the README.txt. Which are the tags that I need to add to to the default html tags for "filtered HTML" mode to make fckeditor work? Atleast
seems to be missing..
Also, are there any known issues with the CVS version with 4.7? I'm just wondering why there are no official release for 4.7. I tested the CVS version with 4.7, and it seems to work quite well.
Also I found the "How to enable the File Browser" instructions a bit confusing. I needed to make the following config to make it work:
$Config['UserFilesPath'] = 'domain_subfolder/files' ;
//domain_subfolder as in drupal installation at http://domain.com/domain_subfolder
$Config['UserFilesAbsolutePath'] = '/var/www/domain.com/htdocs/domain_subfolder/files/' ;
But anyway.. Thanks for this module. The fckeditor seems to be a lot better than tinymce..
Comments
Comment #1
ontwerpwerk commentedUsually i set the filtered html to the following pattern:
the extra
<br>is because depending on the browser FCKeditor handles line breaks differently.---
Have you tried removing (or commenting out) the
$Config['UserFilesPath'] = 'domain_subfolder/files' ;because FCKeditor will try to use the directory you set in the general drupal settings.Comment #2
ontwerpwerk commentedowh.. very important: don't forget
<a>in your filter :)Comment #3
sjs commentedquote:"Have you tried removing (or commenting out) the $Config['UserFilesPath'] = 'domain_subfolder/files' ; because FCKeditor will try to use the directory you set in the general drupal settings."
Yes. I did try that, but the uploaded images were not found.. I can't recall what was wrong.. propably something wrong with the url.. Maybe I can try to reproduce the problem..
Comment #4
ontwerpwerk commentedI added information about the filter tags to the readme and help.
Please file a new issue about the configuration of the file browser.
Comment #5
(not verified) commentedComment #6
aren cambre commentedThis may be a more correct list:
<h1> <h2> <h3> <h4> <h5> <h6> <div> <p> <span> <a> <em> <i> <strong> <b> <blockquote> <img> <br /> <br> <ul> <ol> <li> <dl> <dd> <dt> <cite> <code>Comment #7
WorldFallz commentedThis is what i've just come up with over the last couple of months...
This allows for images, tables, image maps, ordered, unordered, & definition lists, strike-outs, sub- & super scripts, and fonts styles (FCK uses the font tag instead of inline styles). I tried to group them by functionality. It's been a while since any of my users complained about missing functionality, so I think I caught most of the major ones. I was going to include some depreciated and other rare ones "just in case", but I ran into a size limit on text in that field on the form. 8(
Comment #8
hutch commentedIf you want the form to accept more than 255 characters you could edit filter.module, line 1051.