Nach update .6 -> .8 zeigt wysiwyg keine Tabellenrahmen

Gesperrt
hohorstmann
Beiträge: 270
Registriert: Do 27. Apr 2006, 02:38
Wohnort: Tief im Westen
Kontaktdaten:

Nach update .6 -> .8 zeigt wysiwyg keine Tabellenrahmen

Beitrag von hohorstmann » Mo 17. Nov 2008, 12:11

Hallo miteinander,

nach einem update von 4.8.6 nach 4.8.8 zeigt der Tiny-Editor keinen Rahmen mehr bei Rahmengröße 0 (als Editierhilfe). Die Tabelle wird sichtdar, wenn ich die Rahmengröße auf 1 stelle. (FF und IE) Hier meine Mandanteneinstellungen:

Code: Alles auswählen

backend	<span onmouseover="Tip('upload_properties_language_dependant', BALLOON, true, ABOVE,true);">upload_properties_language_depen...</span>	yes      (????)
generator	xhtml	false
language	separator	§§§
login_error_page	idcatart	1
navigation	idcat_bottomnavi	2
navigation	idcat_hilfsnavi	9
navigation	idcat_homepage	1
navigation	printarticlecat	3
navigation	printarticleid	29
newsletter	frontendlink	enabled
newsletter	idcatart	96
printing	containers_to_print	10,11,12,13,14,15,16,17,18,19,20
search	resultpage	40
searchrange	include	1,2,9
tinymce	width	700
wysiwyg	tinymce-extended-valid-elements	*[*]
wysiwyg	tinymce-stylesheet-file	css/style_tiny.css
wysiwyg	tinymce-valid-elements	*[*]
Vor dem updaten wurde der o.a. Rahmen angezeigt. Fehlt das etwas oder muss ich etwas einfügen / korrigieren ?

Gruß, Ho

stefkey
Beiträge: 556
Registriert: Mi 19. Okt 2005, 16:10
Wohnort: Heidelberg
Kontaktdaten:

Beitrag von stefkey » Mo 17. Nov 2008, 20:57

problem hatte ich auch, irgendwo steht die lösung.

schonmal gesucht?

hohorstmann
Beiträge: 270
Registriert: Do 27. Apr 2006, 02:38
Wohnort: Tief im Westen
Kontaktdaten:

Beitrag von hohorstmann » Mo 17. Nov 2008, 22:02

Na ja, die liebe Suche .... tiny, rahmen, rand, u.v.m ... leider war ich nicht auf "ränder" gekommen - oft hilft ja der Plural.
Aber mit Deinem Hinweis habe ich den Thread gefunden:

"stefkey" war das Zauberwort bei der Suche und dann ein bisschen scrollen. Jetzt geht es, Danke

JeromeW
Beiträge: 32
Registriert: Di 11. Nov 2008, 12:52
Kontaktdaten:

Beitrag von JeromeW » Mo 17. Nov 2008, 22:27

Hallo,

bei mir klappts leider noch nicht:

Also folgendes ersetzten (oder liege ich da falsch?):

In der Datei [serverpfad]/contenido/external/wysiwyg/tinymce3/editorclass.php die Zeile 95
Code:
$this->setSetting("content_css", $cfgClient[$client]["path"]["htmlpath"]."css/style_tiny.css");

durch
Code:
$this->setSetting("content_css", $cfg["path"]["contenido_fullhtml"]."cms/css/style_tiny.css");

Mit welchen Mandanteneinstellungen?

Habe verschiedene ausprobiert, bis jetzt kein Erfolg.

Grüße
JeromeW

hohorstmann
Beiträge: 270
Registriert: Do 27. Apr 2006, 02:38
Wohnort: Tief im Westen
Kontaktdaten:

Beitrag von hohorstmann » Di 18. Nov 2008, 08:47

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

JeromeW
Beiträge: 32
Registriert: Di 11. Nov 2008, 12:52
Kontaktdaten:

Beitrag von JeromeW » Di 18. Nov 2008, 09:10

Hallo Hohorstmann,

auf Tinymce2 "umzuschalten" hatte ich schon mit Erfolg ausprobiert, ich hatte jedoch noch die stille Hoffnung Tinymce3 einsetzen zu können. (Die Hoffnung stirbt zuletzt :? )

Zudem habe ich für Backend und Frontend 2 verschiedene Domains, da ich aber davon ausgehe, dass Tinymce nur beim Backend eine Rolle spielt kann man das wohl vernachlässigen.

Viele Grüße und Dank
JeromeW

thanatos
Beiträge: 23
Registriert: So 5. Feb 2006, 18:00
Wohnort: Hannover
Kontaktdaten:

Beitrag von thanatos » Fr 21. Nov 2008, 09:20

Da empfehle ich den thematisch identischen Thread tinymce 3, Styles nicht wählbar - Tabellenränder unsichtbar. Darin findest du einige Löungsansätze - sofern ich dein Problem richtig verstanden habe.

Gruß
Than
Sie sind lustig. Sie gefallen mir. Und jetzt RAUS! (Horst Evers)

Gesperrt