From 277d5699af83ad8e155a613b2db86b0ab3b1ee2b Mon Sep 17 00:00:00 2001
From: tbrehm <t.brehm@ispconfig.org>
Date: Sat, 02 Jun 2007 10:54:50 -0400
Subject: [PATCH] Fixed a bug in the uninstall script.

---
 install/tpl/config.inc.php.master |   12 ++++++++++++
 1 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/install/tpl/config.inc.php.master b/install/tpl/config.inc.php.master
index 7915029..5bf2aed 100644
--- a/install/tpl/config.inc.php.master
+++ b/install/tpl/config.inc.php.master
@@ -35,6 +35,7 @@
 
 $conf["app_title"] = "ISPConfig";
 $conf["app_version"] = "3.0.0";
+$conf["server_id"] 	= "1";
 
 
 /*
@@ -70,6 +71,13 @@
 define("DB_PASSWORD",$conf["db_password"]);
 
 /*
+		Logging
+*/
+
+$conf["log_file"]		= $conf["rootpath"].$conf["fs_div"]."ispconfig.log";
+$conf["log_priority"]	= 0; // 0 = Debug, 1 = Warning, 2 = Error
+
+/*
         Themes
 */
 
@@ -104,4 +112,8 @@
 $conf["default_expire"] 	 = 604800;
 $conf["default_minimum_ttl"] = 86400;
 
+define("LOGLEVEL_DEBUG",0);
+define("LOGLEVEL_WARN",1);
+define("LOGLEVEL_ERROR",2);
+
 ?>
\ No newline at end of file

--
Gitblit v1.9.1