diff options
-rw-r--r-- | config/apache_mod_security/apache_mod_security_view_logs.php | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/config/apache_mod_security/apache_mod_security_view_logs.php b/config/apache_mod_security/apache_mod_security_view_logs.php index be47f8e3..dcf5bd58 100644 --- a/config/apache_mod_security/apache_mod_security_view_logs.php +++ b/config/apache_mod_security/apache_mod_security_view_logs.php @@ -31,7 +31,10 @@ require("guiconfig.inc"); if($_REQUEST['getactivity']) { - $apachelogs = `cat /var/log/httpd-access.log`; + if($_REQUEST['logtype'] == "error") + $apachelogs = `cat /var/log/httpd-error.log`; + else + $apachelogs = `cat /var/log/httpd-access.log`; echo "Apache+Mod_Security_Proxy Server logs as of " . date("D M j G:i:s T Y") . "\n\n"; echo $apachelogs; exit; @@ -104,6 +107,13 @@ if ($_POST['clear']) { } </form> </td> </div> +<?php + if($_REQUEST['logtype'] == "error") { + echo "<br/>View <a href='apache_mod_security_view_logs.php?logtype=error'>error</a> logs"; + } else { + echo "<br/>View <a href='apache_mod_security_view_logs.php'>access</a> logs"; + } +?> <?php include("fend.inc"); ?> </body> </html> |