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 Only local images are allowed. 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

ontwerpwerk’s picture

Usually i set the filtered html to the following pattern:

<h1> <h2> <h3> <h4> <h5> <h6> <div> <p> <span> <em> <i> <strong> <b> <blockquote> <img> <br /> <br> <ul> <ol> <li> <dl> <dd> <dt>

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.

ontwerpwerk’s picture

owh.. very important: don't forget <a> in your filter :)

sjs’s picture

quote:"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..

ontwerpwerk’s picture

Assigned: Unassigned » ontwerpwerk
Status: Active » Fixed

I added information about the filter tags to the readme and help.

Please file a new issue about the configuration of the file browser.

Anonymous’s picture

Status: Fixed » Closed (fixed)
aren cambre’s picture

This 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>

WorldFallz’s picture

This is what i've just come up with over the last couple of months...

<a> <p> <span> <div> <h1> <h2> <h3> <h4> <h5> <h6> <img> <map> <area> <hr> <br> <br /> <ul> <ol> <li> <dl> <dt> <dd> <table> <tr> <td> <em> <b> <u> <i> <strong> <font> <del> <ins> <sub> <sup> <quote> <blockquote> <pre> <address> <code> <cite>

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(

hutch’s picture

If you want the form to accept more than 255 characters you could edit filter.module, line 1051.