X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-logs.php;h=2496ac5035d199157fd77ffde7dffcf963995263;hb=2e68ea39a430a7217e58747b877acaa3e92ea997;hp=c229c552f28c4b83152ff08644d799773959f1b6;hpb=27f65d023a3388a8bd85be8ee5991f776f541847;p=mailer.git diff --git a/inc/modules/admin/what-logs.php b/inc/modules/admin/what-logs.php index c229c552f2..2496ac5035 100644 --- a/inc/modules/admin/what-logs.php +++ b/inc/modules/admin/what-logs.php @@ -48,21 +48,33 @@ if (!empty($_GET['access'])) { // Is the file valid and readable? if (FILE_READABLE($target)) { // Load it directly - $content = implode("", file($target)); + $content = READ_FILE($target); + + // Save old content + $OUTPUT = ob_get_contents(); + + // Clean content + ob_end_clean(); // Set header if (substr($access, -3, 3) == "log") { + // Output header header("Content-Type: text/plain"); } elseif (substr($access, -3, 3) == ".gz") { + // @TODO Fix content-type here + header("Content-Type: text/plain"); + } elseif (substr($access, -3, 3) == ".bz2") { + // @TODO Fix content-type here header("Content-Type: text/plain"); } else { + // Restore old content + OUTPUT_HTML($OUTPUT); + + // Output message LOAD_TEMPLATE("admin_settings_saved", false, UNKNOWN_LOGFILE_FORMAT_1.$access.UNKNOWN_LOGFILE_FORMAT_2); return; } - // Clean content - ob_end_clean(); - // Output the logfile's content and exit print($content); exit; @@ -75,17 +87,17 @@ if (!empty($_GET['access'])) { $dir = PATH.LOGS_BASE."/"; if (is_dir($dir)) { // logs directory does exist - OUTPUT_HTML("
    "); - $handle = @opendir($dir) or mxchange_die("Cannot open directory ".LOGS_BASE."!"); - while($file = @readdir($handle)) { + OUTPUT_HTML("
      "); + $handle = opendir($dir) or mxchange_die("Cannot open directory ".LOGS_BASE."!"); + while ($file = readdir($handle)) { // We currenly only like files with "access" as prefix, should be more flexible! if (substr($file, 0, 6) == "access") { // Okay, let us print it out - OUTPUT_HTML("
    1. ".$file."
    2. "); + OUTPUT_HTML("
    3. ".$file."
    4. "); } } - @closedir($handle); - OUTPUT_HTML("
    "); + closedir($handle); + OUTPUT_HTML("
"); } else { // logs directory does not exist LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_LOGS_DIR_404_1.LOGS_BASE.ADMIN_LOGS_DIR_404_2);