habe eine Contenido-Installation von einem Server zum anderen umgezogen.
Die beiden Server sind vom Aufbau identisch (Managed Server bei domainfactory)
Habe den Migrations-Assistenten benutzt und die erzeugte config.php auch ins richtige Verzeichnis gespielt (contenido/includes/config.php).
Der Auftritt an sich wird korrekt angezeigt, nur wenn ich über den Browser auf das Backend gehen möchte kommt folgende Fehlermeldung:
Code: Alles auswählen
Warning: Cannot modify header information - headers already sent by (output started at […]/conlib/db_mysql.inc:863) in […]/conlib/session.inc on line 961
Warning: Cannot modify header information - headers already sent by (output started at […]/conlib/db_mysql.inc:863) in […]/conlib/session.inc on line 967
Warning: Cannot modify header information - headers already sent by (output started at […]/conlib/db_mysql.inc:863) in […]/conlib/session.inc on line 969
Warning: Cannot modify header information - headers already sent by (output started at […]/conlib/db_mysql.inc:863) in […]/conlib/session.inc on line 971
Warning: Cannot modify header information - headers already sent by (output started at […]/conlib/db_mysql.inc:863) in […]/conlib/session.inc on line 973
Warning: Cannot modify header information - headers already sent by (output started at […]/conlib/db_mysql.inc:863) in […]/conlib/session.inc on line 975
Warning: Cannot modify header information - headers already sent by (output started at […]/conlib/db_mysql.inc:863) in […]/conlib/session.inc on line 977
in dem Dokumentsession.inc steht an der benannten Stelle:
Code: Alles auswählen
if ($this->_expires > 0)
{
header("Expires: ". gmdate("D, d M Y H:i:s", $this->_expires) . " GMT");
} else {
Code: Alles auswählen
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
}
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control:no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Cache-control: private, no-cache");
header("Pragma: no-cache");
header("ETag: $rand");
break;
Kann mir jemand helfen?
Dank und Grüße
Kristian