Hallo JeromeW,
bei mir ging´s so: Ich habe die Datei 
- .../contenido/includes/config.php
 so verändert. Vorher:
Code: Alles auswählen
<?php
/******************************************
* File      :   config.php
* Project   :   Contenido
* Descr     :   Defines all general
*               variables of Contenido.
*
* � four for business AG
******************************************/
global $cfg;
/* Section 1: Path settings
 * ------------------------
 *
 * Path settings which will vary along different
 * Contenido settings.
 *
 * A little note about web and server path settings:
 * - A Web Path can be imagined as web addresses. Example:
 *   http://192.168.1.1/test/
 * - A Server Path is the path on the server's hard disk. Example:
 *   /var/www/html/contenido    for Unix systems OR
 *   c:/htdocs/contenido        for Windows systems
 *
 * Note: If you want to modify the locations of subdirectories for
 *       some reason (e.g. the includes directory), see Section 8.
 */
/* The root server path to the contenido backend */
$cfg['path']['contenido']               = '/homepages/36/d227284046/htdocs/c/contenido/';
/* The web server path to the contenido backend */
$cfg['path']['contenido_fullhtml']      = 'http://bbs-melle.de/c/contenido/';
/* The root server path where all frontends reside */
$cfg['path']['frontend']                = '/homepages/36/d227284046/htdocs/c';
/* The root server path to the conlib directory */
$cfg['path']['phplib']                  = '/homepages/36/d227284046/htdocs/c/conlib/';
/* The root server path to the pear directory */
$cfg['path']['pear']                    = '/homepages/36/d227284046/htdocs/c/pear/';
/* The server path to the desired WYSIWYG-Editor */
$cfg['path']['wysiwyg']                 = '/homepages/36/d227284046/htdocs/c/contenido/external/wysiwyg/tinymce3/';
/* The web path to the desired WYSIWYG-Editor */
$cfg['path']['wysiwyg_html']            = 'http://bbs-melle.de/c/contenido/external/wysiwyg/tinymce3/';
/* The server path to all WYSIWYG-Editors */
$cfg['path']['all_wysiwyg']                 = '/homepages/36/d227284046/htdocs/c/contenido/external/wysiwyg/';
/* The web path to all WYSIWYG-Editors */
$cfg['path']['all_wysiwyg_html']            = 'http://bbs-melle.de/c/contenido/external/wysiwyg/';
/* Section 2: Database settings
 * ----------------------------
 *
 * Database settings for MySQL. Note that we don't support
 * other databases in this release.
 */
.........
 Dabei ersetze ich nur die 2 Zeilen, mit "
tinymce3" durch "
tinymce2" 
Code: Alles auswählen
<?php
/******************************************
* File      :   config.php
* Project   :   Contenido
* Descr     :   Defines all general
*               variables of Contenido.
*
* � four for business AG
******************************************/
global $cfg;
/* Section 1: Path settings
 * ------------------------
 *
 * Path settings which will vary along different
 * Contenido settings.
 *
 * A little note about web and server path settings:
 * - A Web Path can be imagined as web addresses. Example:
 *   http://192.168.1.1/test/
 * - A Server Path is the path on the server's hard disk. Example:
 *   /var/www/html/contenido    for Unix systems OR
 *   c:/htdocs/contenido        for Windows systems
 *
 * Note: If you want to modify the locations of subdirectories for
 *       some reason (e.g. the includes directory), see Section 8.
 */
/* The root server path to the contenido backend */
$cfg['path']['contenido']               = '/homepages/36/d227284046/htdocs/c/contenido/';
/* The web server path to the contenido backend */
$cfg['path']['contenido_fullhtml']      = 'http://bbs-melle.de/c/contenido/';
/* The root server path where all frontends reside */
$cfg['path']['frontend']                = '/homepages/36/d227284046/htdocs/c';
/* The root server path to the conlib directory */
$cfg['path']['phplib']                  = '/homepages/36/d227284046/htdocs/c/conlib/';
/* The root server path to the pear directory */
$cfg['path']['pear']                    = '/homepages/36/d227284046/htdocs/c/pear/';
/* The server path to the desired WYSIWYG-Editor */
$cfg['path']['wysiwyg']                 = '/homepages/36/d227284046/htdocs/c/contenido/external/wysiwyg/tinymce2/';
/* The web path to the desired WYSIWYG-Editor */
$cfg['path']['wysiwyg_html']            = 'http://bbs-melle.de/c/contenido/external/wysiwyg/tinymce2/';
/* The server path to all WYSIWYG-Editors */
$cfg['path']['all_wysiwyg']                 = '/homepages/36/d227284046/htdocs/c/contenido/external/wysiwyg/';
/* The web path to all WYSIWYG-Editors */
$cfg['path']['all_wysiwyg_html']            = 'http://bbs-melle.de/c/contenido/external/wysiwyg/';
/* Section 2: Database settings
......
Damit setze ich zwar Tinymce2 ein, aber das ist für mich wenig störend, da ich so meinem Kunden eine schnelle Lösung biete.
Danke nochmals an stefkey, Ho