From e89b7c1e9d73d3a7ae9916d048a7ea43f56d279a Mon Sep 17 00:00:00 2001
From: Christopher Smith <chris@jalakai.co.uk>
Date: Fri, 14 Feb 2014 17:37:42 +0000
Subject: [PATCH] Add Apache module list to ?do=debug information

This should make it possible to see if mod_security is involved,
at least on servers running mod_php.
---
 inc/html.php | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/inc/html.php b/inc/html.php
index 5941a9af2..928991ae2 100644
--- a/inc/html.php
+++ b/inc/html.php
@@ -1634,6 +1634,17 @@ function html_debug(){
     print_r($inis);
     print '</pre>';
 
+    if (function_exists('apache_get_version')) {
+        $apache['version'] = apache_get_version();
+
+        if (function_exists('apache_get_modules')) {
+            $apache['modules'] = apache_get_modules();
+        }
+        print '<b>Apache</b><pre>';
+        print_r($apache);
+        print '</pre>';
+    }
+
     print '</body></html>';
 }
 
-- 
GitLab