Ich habe den Fehler gefunden, ich hatte ein Semikolon vergessen, aber nichts für ungut, nun habe ich folgenden Fehler:
Warning: Cannot modify header information - headers already sent by (output started at C:\pascal\contenido\contenido42\contenido42\contenido\inc\globals_off.inc.php:1) in C:\pascal\contenido\contenido42\contenido42\conlib\session.inc on line 462
Hie die Config:
<?PHP
//Parse all GET, POST and COOKIE vars
require_once ("C:/pascal/contenido/contenido42/contenido42/contenido/inc/globals_off.inc.php");
/******************************************************************************
Description : Defines all general variables of Contenido.
Copyright : four for business AG
Authors : Olaf Niemann, Björn Brockmann (
bjoern@project-gooseberry.de)
Urls :
www.contenido.de
Create date : 2002-08-08
********************************************************************************/
// MYSQL SETUP
$contenido_host = 'kapa';
$contenido_database = 'test';
$contenido_user = '<!--{user}-->';
$contenido_password = '<!--{pass}-->';
// PATH NAMES OF CONTENIDO
$cfgPathContenido = "C:/pascal/contenido/ontenido42/contenido42/contenido/";
// NEWSLETTER
$cfgNewsletter["from"] = "
pascal.kammerer@gmx.ch";
//**************** CLIENT 1 *****************************
$cfgClient[1]["path"]["frontend"] = "C:/pascal/contenido/contenido42/contenido42/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";
//**************** CLIENT 2 *****************************
$cfgClient[2]["path"]["frontend"] = "C:/pascal/contenido/contenido42/contenido42/front_single/";
$cfgClient[2]["path"]["htmlpath"] = "front_single/";
$cfgClient[2]["htmlpath"]["frontend"] = "../".$cfgClient[2]["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[2]["path"]["img"] = $cfgClient[2]["path"]["frontend"]."img/";
$cfgClient[2]["htmlpath"]["img"] = $cfgClient[2]["htmlpath"]["frontend"]."img/";
$cfgClient[2]["frontendpath"]["img"] = "img/";
$cfgClient[2]["actionname"]["img"] = "Bilder";
$cfgClient[2]["text"]["img"] = "Laden Sie ein Bild auf den Webserver";
$cfgClient[2]["filetype"]["img"] = "img";
$cfgClient[2]["path"]["pdf"] = $cfgClient[2]["path"]["frontend"]."pdf/";
$cfgClient[2]["htmlpath"]["pdf" ] = $cfgClient[2]["htmlpath"]["frontend"]."pdf/";
$cfgClient[2]["frontendpath"]["pdf"] = "pdf/";
$cfgClient[2]["actionname"]["pdf"] = "PDF";
$cfgClient[2]["text"]["pdf"] = "Laden Sie ein PDF-Dokument auf den Webserver";
$cfgClient[2]["filetype"]["pdf"] = "pdf";
//---------------------------------------------------------
// DON'T CHANGE ANYTHING BELOW
//---------------------------------------------------------
//---------------------------------------------------------
// SOME MORE VARS
//---------------------------------------------------------
//SOME MORE PATHES
$cfgPathDoc = "doc/";
$cfgPathImg = "img/";
$cfgPathInc = "inc/";
$cfgPathJs = "js/";
$cfgPathTpl = "tpl/";
$cfgPathFrontendImg = "img_site/";
//$cfgPathContenidoPhplib = str_replace('contenido/*', 'conlib/', $cfgPathContenido . '*');
$cfgPathContenidoPhplib = "C:/pascal/contenido/contenido42/contenido42/conlib/";
// HTML
$cellpadding = "1";
$cellspacing = "2";
$border = "0";
//---------------------------------------------------------
// INCLUDE SOME COMMON FILES
//---------------------------------------------------------
//Include phplib
include_once ($cfgPathContenidoPhplib . 'prepend.php3');
//---------------------------------------------------------
// NOT SUPPORTED YET
//---------------------------------------------------------
// LANGUAGE
//$cfgLanguage = "de";
// FORMAT FOR DATE / TIME
// $cfgFormatDate = "DD.MM.YYYY";
// $cfgFormatTime = "hh:mm";
?>
Danke für die Hilfe
