naja geht immer noch nicht;

der fehler wenn ich im acpupdaten will ist zwar weg, aber er updatet immer noch nichts. läd nur kurz und dann ist fertig, es passiert aber nichts mehr.
der fehler im admin bereich ist:
Code: Alles auswählen
Warning: Invalid argument supplied for foreach() in /var/www/web177/html/ForumProjekt/dim/admin/admin_arcade.php on line 45
Warning: Cannot modify header information - headers already sent by (output started at /var/www/web177/html/ForumProjekt/dim/admin/admin_arcade.php:45) in /var/www/web177/html/ForumProjekt/dim/admin/page_header_admin.php on line 140
Warning: Cannot modify header information - headers already sent by (output started at /var/www/web177/html/ForumProjekt/dim/admin/admin_arcade.php:45) in /var/www/web177/html/ForumProjekt/dim/admin/page_header_admin.php on line 146
Warning: Cannot modify header information - headers already sent by (output started at /var/www/web177/html/ForumProjekt/dim/admin/admin_arcade.php:45) in /var/www/web177/html/ForumProjekt/dim/admin/page_header_admin.php on line 147
und das ist der teil der page_header_admin, was soll da falsch sein?
Code: Alles auswählen
// Work around for "current" Apache 2 + PHP module which seems to not
// cope with private cache control setting
if (!empty($HTTP_SERVER_VARS['SERVER_SOFTWARE']) && strstr($HTTP_SERVER_VARS['SERVER_SOFTWARE'], 'Apache/2'))
{
header ('Cache-Control: no-cache, pre-check=0, post-check=0');
}
else
{
header ('Cache-Control: private, pre-check=0, post-check=0, max-age=0');
}
header ('Expires: 0');
header ('Pragma: no-cache');
$template->pparse('header');
?>
und hier der teil aus der admin_arcade:
Code: Alles auswählen
foreach ($iNA_info as $key => $value)
{
$build_array[$value['config_name']] = $value['config_value'];
}
wenn ich jeweils den code rauslösche sind die fehler weg, brauch ich den code zwingend oder was kann ich ändern dass die fehler weg sind?