diff --git a/admin/.htaccess b/admin/.htaccess
index 62476753dabca6ca1823adc3a40f308db18c92f9..f6c1ee98cb28d21b744b2b0600b0399844a08204 100755
--- a/admin/.htaccess
+++ b/admin/.htaccess
@@ -1,12 +1,12 @@
 authType      basic
 authName      "ADMIN OpenSondage"
 
-authUserFile  /home/framatools/www/opensondage/admin/.htpasswd
+authUserFile  /home/framatools/www/opensondage_dev/admin/.htpasswd
 
-order         deny,allow
+#order         deny,allow
 
 # satisfy       all
 
 # allow from all
 
-require user studs
+#require user studs
diff --git a/install.mysql.sql b/install.mysql.sql
index bd0f086f7b67c86df8e658da7327ee910f018ab4..c873a75d288aff08cef90db5b402e0f46a388784 100644
--- a/install.mysql.sql
+++ b/install.mysql.sql
@@ -1,66 +1,77 @@
-CREATE TABLE IF NOT EXISTS `sondage` (
-       `id_sondage` CHAR(16) NOT NULL,
-       `commentaires` text,
-       `mail_admin` VARCHAR(128),
-       `nom_admin` VARCHAR(64),
-       `titre` text,
-       `id_sondage_admin` CHAR(24),
-       `date_fin` TIMESTAMP,
-       `format` VARCHAR(2),
-       `mailsonde` BOOLEAN DEFAULT '0',
-       		   UNIQUE KEY (`id_sondage`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+-- Base de données: `opensondage`
+--
 
+-- --------------------------------------------------------
 
 --
--- Name: sujet_studs; Type: TABLE;
+-- Structure de la table `comments`
 --
 
-CREATE TABLE IF NOT EXISTS `sujet_studs` (
-    `id_sondage` CHAR(16) NOT NULL,
-    `sujet` TEXT,
-		    FOREIGN KEY (`id_sondage`) REFERENCES sondage(id_sondage) on delete cascade
-) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+CREATE TABLE IF NOT EXISTS `comments` (
+  `id_comment` int(11) unsigned NOT NULL AUTO_INCREMENT,
+  `id_sondage` char(16) NOT NULL,
+  `comment` text NOT NULL,
+  `usercomment` text,
+  PRIMARY KEY (`id_comment`),
+  KEY `id_sondage` (`id_sondage`)
+) ENGINE=InnoDB  DEFAULT CHARSET=utf8;
 
+-- --------------------------------------------------------
 
 --
--- Name: user_studs; Type: TABLE;
+-- Structure de la table `sondage`
 --
 
-CREATE TABLE IF NOT EXISTS `user_studs` (
-    `id_users` INT(11) unsigned NOT NULL AUTO_INCREMENT,
-    `nom` VARCHAR(64) NOT NULL,
-    `id_sondage` CHAR(16) NOT NULL,
-    `reponses` text NOT NULL,
-    	     PRIMARY KEY (`id_users`),
-	     FOREIGN KEY (`id_sondage`) REFERENCES sondage(id_sondage) on delete cascade
+CREATE TABLE IF NOT EXISTS `sondage` (
+  `id_sondage` char(16) NOT NULL,
+  `commentaires` text,
+  `mail_admin` varchar(128) DEFAULT NULL,
+  `nom_admin` varchar(64) DEFAULT NULL,
+  `titre` text,
+  `id_sondage_admin` char(24) DEFAULT NULL,
+  `date_creation` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
+  `date_fin` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `format` varchar(2) DEFAULT NULL,
+  `mailsonde` tinyint(1) DEFAULT '0',
+  `statut` int(11) NOT NULL DEFAULT '1' COMMENT '1 = actif ; 0 = inactif ; ',
+  UNIQUE KEY `id_sondage` (`id_sondage`)
 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
 
+-- --------------------------------------------------------
 
 --
--- Name: comments; Type: TABLE;
+-- Structure de la table `sujet_studs`
 --
 
-CREATE TABLE IF NOT EXISTS `comments` (
-    `id_comment` INT(11) unsigned NOT NULL AUTO_INCREMENT,
-    `id_sondage` CHAR(16) NOT NULL,
-    `comment` text NOT NULL,
-    `usercomment` text,
-    	     PRIMARY KEY (`id_comment`),
-	     FOREIGN KEY (`id_sondage`) REFERENCES sondage(id_sondage) on delete cascade
+CREATE TABLE IF NOT EXISTS `sujet_studs` (
+  `id_sondage` char(16) NOT NULL,
+  `sujet` text,
+  KEY `id_sondage` (`id_sondage`)
 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
 
+-- --------------------------------------------------------
 
 --
--- Data for Name: sondage; Type: TABLE DATA;
+-- Structure de la table `user_studs`
 --
 
+CREATE TABLE IF NOT EXISTS `user_studs` (
+  `id_users` int(11) unsigned NOT NULL AUTO_INCREMENT,
+  `nom` varchar(64) NOT NULL,
+  `id_sondage` char(16) NOT NULL,
+  `reponses` text NOT NULL,
+  PRIMARY KEY (`id_users`),
+  KEY `id_sondage` (`id_sondage`)
+) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=160284 ;
+
+
+
 INSERT INTO `sondage`
 (`id_sondage`, `commentaires`, `mail_admin`, `nom_admin`,
 	     `titre`, `id_sondage_admin`,
 	     `date_fin`, `format`)
 VALUES
-('aqg259dth55iuhwm','Repas de Noel du service','Stephanie@saillard.com','Stephanie',
+('aqg259dth55iuhwm','Repas de Noel du service','Stephanie@retaillard.com','Stephanie',
 			   'Repas de Noel','aqg259dth55iuhwmy9d8jlwk',
 			   FROM_UNIXTIME('1627100361'),'D+');