[phpBB Debug] PHP Warning: in file [ROOT]/ext/tas2580/seourls/event/listener.php on line 213: Undefined array key "FORUM_NAME"
REDAXO Forum • Redaxo, V2.7.1 Setup abgeschlossen, Login nicht möglich
Seite 1 von 1

Redaxo, V2.7.1 Setup abgeschlossen, Login nicht möglich

Verfasst: 26. Aug 2004, 23:22
von komma
Hallo,

ich habe ebend versucht Redaxo 2.7.1 zu installieren,
nachdem ich daß Setup erfolgreich abgeschlossen hatte und den Zugang prüfen wollte kam folgende Fehlermeldung :
PHP-Fehlermeldung hat geschrieben:Warning: extract(): First argument should be an array in /redaxo/redaxo/include/functions.inc.php on line 12

Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /redaxo/redaxo/include/functions.inc.php:12) in /redaxo/redaxo/index.php on line 17

Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /redaxo/redaxo/include/functions.inc.php:12) in /redaxo/redaxo/index.php on line 17

Warning: Cannot modify header information - headers already sent by (output started at /redaxo/redaxo/include/functions.inc.php:12) in /html/redaxo/redaxo/index.php on line 32
Die register_globals sind off und safe_mode ist auch auf off.

Gruß komma.

Verfasst: 27. Aug 2004, 02:47
von careck
bitte öffne die datei /redaxo/redaxo/include/functions.inc.php und ändere die Zeilen 6-12 folgendermassen:

Code: Alles auswählen

	if ($_COOKIE) extract($_COOKIE);
	if ($_ENV) extract($_ENV);
	if ($_FILES) extract($_FILES);
	if ($_GET) extract($_GET);
	if ($_POST) extract($_POST);
	if ($_SERVER) extract($_SERVER);
	if ($_SESSION) extract($_SESSION);
Ich habe das bereits im CVS eingecheckt und es wird beim nächsten Update dabei sein.

Cheers,
Carsten.