Hm komisch ......
ja es lag an den schließenden Klammern. Ist für mich nur verwunderlich wie die dahin kommt, weil das ein aktelles Backup vom Server war. Nun ja danke dir.
Gruß Huchi
Edit: Hab jetzt das update nochmals lokal durchgeführt aber ich bekomme wieder nen Fehler
Code: Alles auswählen
Parse error: parse error, expecting `T_FUNCTION' in C:\xampp\htdocs\web-server\phpBB3\includes\session.php on line 1853
Das würde diese Zeile betreffen:
Code: Alles auswählen
// Is board disabled and user not an admin or allowed to use?
if ($config['board_disable'] && !defined('IN_LOGIN') && !$auth->acl_gets('a_', 'u_disabled_ignore'))
{
send_status_line(503, 'Service Unavailable');
}
$template->assign_vars(array(
'MESSAGE' => $config['board_disable_msg'],
'DISABLE' => $this->lang['DISABLE_MESSAGE'])
);
page_header($this->lang['OFFLINE']);
$template->set_filenames(array(
'body' => 'board_disable.html'
));
page_footer();
exit;
}
// Is load exceeded?
if ($config['limit_load'] && $this->load !== false)
{
if ($this->load > floatval($config['limit_load']) && !defined('IN_LOGIN') && !defined('IN_ADMIN'))
{
// Set board disabled to true to let the admins/mods get the proper notification
$config['board_disable'] = '1';
if (!$auth->acl_gets('a_', 'm_') && !$auth->acl_getf_global('m_'))
{
if ($this->data['is_bot'])
{
send_status_line(503, 'Service Unavailable');
}
trigger_error('BOARD_UNAVAILABLE');
}
}
}
if (isset($this->data['session_viewonline']))
{