From eded9dcce84eb3f8c98e23256fde8570030ec9c7 Mon Sep 17 00:00:00 2001
From: tbrehm <t.brehm@ispconfig.org>
Date: Tue, 27 May 2008 11:56:36 -0400
Subject: [PATCH] - cgi, ssi and sueexec could not be disabled in vhosts - logfile directory was not deleted when a site was deleted.

---
 server/plugins-available/apache2_plugin.inc.php |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/server/plugins-available/apache2_plugin.inc.php b/server/plugins-available/apache2_plugin.inc.php
index 5fb3648..c0b04a4 100644
--- a/server/plugins-available/apache2_plugin.inc.php
+++ b/server/plugins-available/apache2_plugin.inc.php
@@ -447,6 +447,11 @@
 		}
 		// end removing symlinks
 		
+		// Delete the log file directory
+		$vhost_logfile_dir = escapeshellcmd('/var/log/ispconfig/httpd/'.$data["old"]["domain"]);
+		if($data["old"]["domain"] != '' && !stristr($vhost_logfile_dir,'..')) exec("rm -rf $vhost_logfile_dir");
+		$app->log("Removing website logfile directory: $vhost_logfile_dir",LOGLEVEL_DEBUG);
+		
 	}
 	
 	//* This function is called when a IP on the server is inserted, updated or deleted

--
Gitblit v1.9.1