dann kommt die fehlermeldung
Code: Alles auswählen
Fatal error: Cannot redeclare class auth_arcade in /usr/export/www/vhosts/funnetwork/hosting/***/includes/auth_arcade.php on line 24
Muss was mit /includes/auth.php zu tun haben hab gerade die alte datei vor dem update aufgespielt der /includes/auth.php datei und alles ging wieder
Die änderung die man machen musste ist folgende:
Code: Alles auswählen
Find
Tip:This may be a partial find and not the whole line.
Code:Select All
$sql = 'UPDATE ' . USERS_TABLE . "
SET user_permissions = '',
user_perm_from = 0
$where_sql";
$db->sql_query($sql);
Add after
Tip:Add these lines on a new blank line after the preceding line(s) to find.
Code:Select All
//Clear arcade permissions
if (!class_exists('auth_arcade'))
{
global $phpbb_root_path, $table_prefix, $phpEx;
include($phpbb_root_path . 'includes/arcade/arcade_constants.' . $phpEx);
include($phpbb_root_path . 'includes/auth_arcade.' . $phpEx);
}
$auth_arcade = new auth_arcade();
$auth_arcade->acl_clear_prefetch($user_id);