ERROR !
Logdir is not writable

'); } //lesen $errorbutton = ''; $perlbutton = ''; $perlbutton2 = ''; if (file_exists($loginfo['errorlog'])) { $errorbutton = ''; } if (file_exists($loginfo['perllog'])) { $perlbutton = ''; } if (file_exists($loginfo['perllogcomplete'])) { $perlbutton2 = ''; } //anzeigen echo '
'; echo ''; echo "\n".$errorbutton."\n".$perlbutton."\n".$perlbutton2."\n"; echo '

'; //Status Logfiles $icon['blank'] = isset($icon['blank']) ? $icon['blank'] : $config['files']['iconpath'].'blank.gif'; echo '
'; echo ''; echo '
'.$lang['L_LOGFILEFORMAT'].'

'.((isset($config['logcompression']) && (1 == $config['logcompression'])) ? 'compressed' : ''); echo ''.(((isset($config['logcompression']) && 1 == $config['logcompression'])) ? $lang['L_COMPRESSED'] : $lang['L_NOTCOMPRESSED']).'
      '; echo ''.substr($loginfo['log'], strrpos($loginfo['log'], '/') + 1).'
'; echo ($loginfo['errorlog_size'] > 0) ? ''.substr($loginfo['errorlog'], strrpos($loginfo['errorlog'], '/') + 1).'
' : substr($loginfo['errorlog'], strrpos($loginfo['errorlog'], '/') + 1).'
'; echo ($loginfo['perllog_size'] > 0) ? ''.substr($loginfo['perllog'], strrpos($loginfo['perllog'], '/') + 1).'
' : substr($loginfo['perllog'], strrpos($loginfo['perllog'], '/') + 1).'
'; echo ($loginfo['perllogcomplete_size'] > 0) ? ''.substr($loginfo['perllogcomplete'], strrpos($loginfo['perllogcomplete'], '/') + 1).'
' : substr($loginfo['perllogcomplete'], strrpos($loginfo['perllogcomplete'], '/') + 1).'
'; echo 'total
'.byte_output($loginfo['log_size']).'
'.byte_output($loginfo['errorlog_size']).'
'.byte_output($loginfo['perllog_size']).'
'.byte_output($loginfo['perllogcomplete_size']).'
'.byte_output($loginfo['log_totalsize']).'
'.$lang['L_NOREVERSE'].'   '.$lang['L_REVERSE'].'
'; $out = ''; if (2 != $r) { $out .= '
';
}

if (file_exists($lfile)) {
    $zeilen = ((isset($config['logcompression']) && 1 == $config['logcompression'])) ? gzfile($lfile) : file($lfile);
    if (30 == $r) {
        echo '
'.print_r($zeilen, true).'
'; exit(); } if (1 == $revers) { $zeilen = array_reverse($zeilen); } foreach ($zeilen as $zeile) { if (2 == $r) { $out .= $zeile.'
'; } elseif (3 == $r) { $z = explode('|:|', $zeile); for ($i = 0; $i < count($z); ++$i) { $out .= ''.substr($z[$i], 0, strpos($z[$i], ': ')).' '.substr($z[$i], strpos($z[$i], ': ')).'
'; } } else { $out .= $zeile; } } } if (2 != $r) { $out .= '
'; } $suchen = [ '', '', ]; $ersetzen = [ '', '', ]; $out = str_replace($suchen, $ersetzen, $out); if ('' != $out) { echo '

'; echo ''; echo '

'.$out.'
'; } echo '
'; echo MODFooter(); ob_end_flush(); exit();