From ddae3d2e9727223af415cdf74906da9c9ef38ccd Mon Sep 17 00:00:00 2001 From: Alan Garcia Date: Wed, 31 Oct 2012 12:45:14 +0000 Subject: [PATCH] Correction dans mysql.sql --- bureau/class/config.php | 5 +++++ install/mysql.sql | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/bureau/class/config.php b/bureau/class/config.php index 1973aed9..7ff181ec 100644 --- a/bureau/class/config.php +++ b/bureau/class/config.php @@ -37,6 +37,11 @@ et mettez votre ip dans le IF pour que seule votre ip puisse accéder au bureau : */ +/* * / +// To enable dispay of PHP errors +ini_set('display_errors', true); +/* */ + /* * / if (getenv("REMOTE_ADDR")!="127.0.0.1") { echo "Le bureau AlternC est en vacances jusqu'a minuit pour maintenance.
diff --git a/install/mysql.sql b/install/mysql.sql index 1356532c..4102f1bb 100644 --- a/install/mysql.sql +++ b/install/mysql.sql @@ -495,8 +495,8 @@ CREATE TABLE IF NOT EXISTS `domaines_type` ( `only_dns` BOOLEAN DEFAULT FALSE, -- Update_domains modify just the dns, no web configuration `need_dns` BOOLEAN DEFAULT TRUE, -- The server need to be the DNS to allow this service `advanced` BOOLEAN DEFAULT TRUE, -- It's an advanced option - create_tmpdir BOOLEAN NOT NULL DEFAULT FALSE, -- do we create tmp dir ? - create_targetdir BOOLEAN NOT NULL DEFAULT FALSE, -- do we create target dir ? + `create_tmpdir` BOOLEAN NOT NULL DEFAULT FALSE, -- do we create tmp dir ? + `create_targetdir` BOOLEAN NOT NULL DEFAULT FALSE, -- do we create target dir ? PRIMARY KEY ( `name` ) ) COMMENT = 'Type of domains allowed';