Code: Alles auswählen
$dir = opendir($phpbb_root_path.'language');
Code: Alles auswählen
$dirname = opendir($phpbb_root_path.'language');
Code: Alles auswählen
$dir = opendir($phpbb_root_path.'language');
Code: Alles auswählen
$dirname = opendir($phpbb_root_path.'language');
Der Rest ist wie gehabt, Forum erscheint unter den fehlermeldungen. siehe: http://www.kissfanshop.de/phpbb2/index.phpWarning: Supplied argument is not a valid Directory resource in /mnt/ls6/15/131/00000000/htdocs/phpbb2/common.php on line 201
Warning: Supplied argument is not a valid Directory resource in /mnt/ls6/15/131/00000000/htdocs/phpbb2/common.php on line 211
Warning: Cannot add header information - headers already sent by (output started at /mnt/ls6/15/131/00000000/htdocs/phpbb2/common.php:201) in /mnt/ls6/15/131/00000000/htdocs/phpbb2/includes/sessions.php on line 182
Warning: Cannot add header information - headers already sent by (output started at /mnt/ls6/15/131/00000000/htdocs/phpbb2/common.php:201) in /mnt/ls6/15/131/00000000/htdocs/phpbb2/includes/sessions.php on line 183
Warning: Cannot add header information - headers already sent by (output started at /mnt/ls6/15/131/00000000/htdocs/phpbb2/common.php:201) in /mnt/ls6/15/131/00000000/htdocs/phpbb2/includes/page_header.php on line 476
Warning: Cannot add header information - headers already sent by (output started at /mnt/ls6/15/131/00000000/htdocs/phpbb2/common.php:201) in /mnt/ls6/15/131/00000000/htdocs/phpbb2/includes/page_header.php on line 478
Warning: Cannot add header information - headers already sent by (output started at /mnt/ls6/15/131/00000000/htdocs/phpbb2/common.php:201) in /mnt/ls6/15/131/00000000/htdocs/phpbb2/includes/page_header.php on line 479
// Work around for "current" Apache 2 + PHP module which seems to not
// cope with private cache control setting
if (!empty($_SERVER['SERVER_SOFTWARE']) && strstr($_SERVER['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('overall_header');
?>
Code: Alles auswählen
## Suche
$dir = opendir($phpbb_root_path.'language');
## Füge DAVOR ein
/*
## Suche
break;
}
}
## Füge DANACH ein
*/
sieht also so aus, dass ich diesen Hack definitiv vergessen kann, ist das richtig? Bitte um Info, dann werde ich ihn wieder deinstallieren.Warning: Supplied argument is not a valid Directory resource in /mnt/ls6/15/131/00000000/htdocs/phpbb2/common.php on line 201
Warning: Supplied argument is not a valid Directory resource in /mnt/ls6/15/131/00000000/htdocs/phpbb2/common.php on line 211
Warning: Cannot add header information - headers already sent by (output started at /mnt/ls6/15/131/00000000/htdocs/phpbb2/common.php:201) in /mnt/ls6/15/131/00000000/htdocs/phpbb2/includes/sessions.php on line 182
Warning: Cannot add header information - headers already sent by (output started at /mnt/ls6/15/131/00000000/htdocs/phpbb2/common.php:201) in /mnt/ls6/15/131/00000000/htdocs/phpbb2/includes/sessions.php on line 183
Warning: Cannot add header information - headers already sent by (output started at /mnt/ls6/15/131/00000000/htdocs/phpbb2/common.php:201) in /mnt/ls6/15/131/00000000/htdocs/phpbb2/includes/page_header.php on line 476
Warning: Cannot add header information - headers already sent by (output started at /mnt/ls6/15/131/00000000/htdocs/phpbb2/common.php:201) in /mnt/ls6/15/131/00000000/htdocs/phpbb2/includes/page_header.php on line 478
Warning: Cannot add header information - headers already sent by (output started at /mnt/ls6/15/131/00000000/htdocs/phpbb2/common.php:201) in /mnt/ls6/15/131/00000000/htdocs/phpbb2/includes/page_header.php on line 479
Code: Alles auswählen
## Suche
$language = ( isset($HTTP_POST_VARS['language']) ) ? $HTTP_POST_VARS['language'] : $HTTP_GET_VARS['language'];
## Ersetze mit
if (!$language){
$language = 'english';
}