Re: safeGT Installationsfehler
Verfasst: 01.03.2014 16:25
es geht hier nur um eine datei. die du im pastebin eingefügt hast. welche sonst 

phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
Code: Alles auswählen
Parse error: syntax error, unexpected 'case' (T_CASE) in /users/gamenowde/www/phpBB3/includes/acp/acp_forums.php on line 688
Parse error: syntax error, unexpected 'case' (T_CASE) in /users/gamenowde/www/phpBB3/includes/acp/acp_forums.php on line 688
Also nochmal:Hallo.
Und direkt der zweite Fehler an einem Tag. Wenn ich im acp ein neues Forum erstellen oder ein bestehendes editieren möchte, kommt folgende Fehlermeldung:
Was ist das?Code: Alles auswählen
[phpBB Debug] PHP Warning: in file [ROOT]/includes/acp/acp_forums.php on line 673: in_array() expects parameter 2 to be array, null given [phpBB Debug] PHP Warning: in file [ROOT]/includes/acp/acp_forums.php on line 674: in_array() expects parameter 2 to be array, null given [phpBB Debug] PHP Warning: in file [ROOT]/includes/acp/acp_forums.php on line 675: in_array() expects parameter 2 to be array, null given [phpBB Debug] PHP Warning: in file [ROOT]/includes/acp/acp_forums.php on line 676: in_array() expects parameter 2 to be array, null given [phpBB Debug] PHP Warning: in file [ROOT]/includes/acp/acp_forums.php on line 677: in_array() expects parameter 2 to be array, null given [phpBB Debug] PHP Warning: in file [ROOT]/includes/acp/acp_forums.php on line 678: in_array() expects parameter 2 to be array, null given [phpBB Debug] PHP Warning: in file [ROOT]/adm/index.php on line 150: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3887) [phpBB Debug] PHP Warning: in file [ROOT]/adm/index.php on line 152: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3887) [phpBB Debug] PHP Warning: in file [ROOT]/adm/index.php on line 153: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3887) [phpBB Debug] PHP Warning: in file [ROOT]/adm/index.php on line 154: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3887)
Grüße
Benni
Code: Alles auswählen
// SAFE GT START
if (!empty($forum_data['forum_gamertags']))
{
$thegts = unserialize($forum_data['forum_gamertags']);
}
else
{
$thegts = array();
}
// SAFE GT END
}
Code: Alles auswählen
// SAFE GT START
if (!empty($forum_data['forum_gamertags']))
{
$thegts = unserialize($forum_data['forum_gamertags']);
if ($thegts == null){
$thegts = array();
}
}
else
{
$thegts = array();
}
// SAFE GT END
}
Code: Alles auswählen
Parse error: syntax error, unexpected '$template' (T_VARIABLE), expecting function (T_FUNCTION) in /users/gamenowde/www/phpBB3/includes/acp/acp_forums.php on line 612
Code: Alles auswählen
else
{
$thegts = array();
}
// SAFE GT END
}
}
}
Code: Alles auswählen
else
{
$thegts = array();
}
// SAFE GT END
}