trotz vieler Versuche, die Pfade für meine 2. Homepage im puretec-Paket korrekt einzustellen, ist es mir nur gelungen, die Contentverwaltung mit Contenido zum Laufen zu bringen. Sprache, Layout, Module, Templates Struktur und Seiten, alles für Client 3 neu angelegt bzw. aufgebaut. Im Contenido CMS sieht alles okay aus.
Der User sieht unter www.IllustrierteWelt.de/index0.php leider nur die Frameseiten ohne Content, ohne Navigation.
Wo ist hier bloß der Wurm drin?
Vielen Dank und freundliche Grüße
Ralph Bauer, Berlin
Ich hab hier die relevanten Einstellungen und URLs zusammengeschrieben:
Code: Alles auswählen
Root bei Puretec
/homepages/24/d23787147/htdocs
= root von www.IllustrierteStadt.de (läuft, ok)
/cms
Contenido Redaktionssystem
/front_frame
= Client1 www.IllustrierteStadt.de
/welt
Client3 und Root von www.IllustrierteWelt.de/index0.php
Contenido-Verwaltung für diesen Client läuft.
Aber im Browser kommt im Frameset das Login Formular mit einer Warmeldung (Testen mit gast/gast ), danach der Hinweis "Seite ist nicht online". Ein Login ist eigentlich hier nicht vorgesehen.
Die config.php für Contenido in /cms/inc:
<?PHP
//Parse all GET, POST and COOKIE vars
require_once '/homepages/24/d23787147/htdocs/cms/inc/globals_off.inc.php';
// MYSQL SETUP
$contenido_host = 'db46.puretec.de';
$contenido_database = '****';
$contenido_user = '****';
$contenido_password = '****';
// PATH NAMES OF CONTENIDO
$cfgPathContenido = "/homepages/24/d23787147/htdocs/cms/";
//**************** Dieser CLIENT 1 läuft !!! www.IllustrierteStadt.de *****************************
$cfgClient[1]["path"]["frontend"] = "/homepages/24/d23787147/htdocs/front_frame/"; // for Contenido PHP
$cfgClient[1]["path"]["htmlpath"] = "front_frame/"; // for Contenido-HTML
$cfgClient[1]["htmlpath"]["frontend"] = "../".$cfgClient[1]["path"]["htmlpath"];// for linking to files in frontend from contenido (main -> dis_editcontent)
//**** just comment out one of those blocks to not display this folder for upload ************
$cfgClient[1]["path"]["img"] = $cfgClient[1]["path"]["frontend"]."img/";
$cfgClient[1]["htmlpath"]["img"] = $cfgClient[1]["htmlpath"]["frontend"]."img/";
$cfgClient[1]["frontendpath"]["img"] = "img/";
$cfgClient[1]["actionname"]["img"] = "Bilder";
$cfgClient[1]["text"]["img"] = "Laden Sie ein Bild auf den Webserver";
$cfgClient[1]["filetype"]["img"] = "img";
$cfgClient[1]["path"]["pdf"] = $cfgClient[1]["path"]["frontend"]."pdf/";
$cfgClient[1]["htmlpath"]["pdf" ] = $cfgClient[1]["htmlpath"]["frontend"]."pdf/";
$cfgClient[1]["frontendpath"]["pdf"] = "pdf/";
$cfgClient[1]["actionname"]["pdf"] = "PDF";
$cfgClient[1]["text"]["pdf"] = "Laden Sie ein PDF-Dokument auf den Webserver";
$cfgClient[1]["filetype"]["pdf"] = "pdf";
// Dieser Client 3 läuft nur in Contenido. Kein Content im Browser:
// www.IllustrierteWelt.de/index0.php
$cfgClient[3]["path"]["frontend"] = "/homepages/24/d23787147/htdocs/welt/";
$cfgClient[3]["path"]["htmlpath"] = "welt/";
$cfgClient[3]["htmlpath"]["frontend"] = "../".$cfgClient[3]["path"]["htmlpath"]; // for linking to files in frontend from contenido (main -> dis_editcontent)
//**** just comment out one of those blocks to not display this folder for upload ************
$cfgClient[3]["path"]["img"] = $cfgClient[3]["path"]["frontend"]."img/";
$cfgClient[3]["htmlpath"]["img"] = $cfgClient[3]["htmlpath"]["frontend"]."img/";
$cfgClient[3]["frontendpath"]["img"] = "img/";
$cfgClient[3]["actionname"]["img"] = "Bilder";
$cfgClient[3]["text"]["img"] = "Laden Sie ein Bild auf den Webserver";
$cfgClient[3]["filetype"]["img"] = "img";
$cfgClient[3]["path"]["pdf"] = $cfgClient[3]["path"]["frontend"]."pdf/";
$cfgClient[3]["htmlpath"]["pdf" ] = $cfgClient[3]["htmlpath"]["frontend"]."pdf/";
$cfgClient[3]["frontendpath"]["pdf"] = "pdf/";
$cfgClient[3]["actionname"]["pdf"] = "PDF";
$cfgClient[3]["text"]["pdf"] = "Laden Sie ein PDF-Dokument auf den Webserver";
$cfgClient[3]["filetype"]["pdf"] = "pdf";
...
?>
Die config.php im Stammverzeichnis des Client 3 www.illustierteWelt.de
<?
$ContenidoPath = "../cms/";
$errorfont = "font3";
$language = "de";
$client = "3";
if (!$lang) {$lang = 1;}
$nav_treeid = 1; // id of category that is the root of the tree that should be displayed
$navsec_treeid = 2;
//-----------------------------------------
if (!$idcat) {$idcat = $nav_treeid;}
if (!$parent) {$parent = $nav_treeid;}
?>