diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog
index 40e4f3a707..9723654a23 100644
--- a/pandora_console/ChangeLog
+++ b/pandora_console/ChangeLog
@@ -1,3 +1,12 @@
+2008-09-18  Sancho Lerena <slerena@artica.es>
+
+	* install.php: Fixed a bad description string.
+
+	* pandoradb.sql: Precission for the float in post_process was
+	insignificant (2 decimals), not valid to transform from bytes
+	to MB for example, altered to have 13 decimals. Thanks to 
+	darkgate for this bug report.
+
 2008-09-17  Evi Vanoost  <vanooste@rcbi.rochester.edu>
 
 	* operation/visual_console/render_view.php: Removed short tags.
diff --git a/pandora_console/install.php b/pandora_console/install.php
index 200d3663d2..bcc5da7787 100644
--- a/pandora_console/install.php
+++ b/pandora_console/install.php
@@ -187,7 +187,7 @@ function install_step1() {
 			Configuration and database would be overwritten if you continued.</div>";
 		}
 		echo "<table width=100%>";
-		$writable = check_writable ( "include", "Checking if ./config is writable");
+		$writable = check_writable ( "include", "Checking if ./include is writable");
 		if (file_exists("include/config.php"))
 			$writable += check_writable ( "include/config.php", "Checking if include/config.php is writable");
 		echo "</table>";
diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql
index 5f8f363e3d..48906c79db 100644
--- a/pandora_console/pandoradb.sql
+++ b/pandora_console/pandoradb.sql
@@ -153,7 +153,7 @@ CREATE TABLE IF NOT EXISTS `tagente_modulo` (
   `plugin_pass` varchar(250) default '',
   `plugin_parameter` text,
   `id_plugin` int(10) default '0',
-  `post_process` double(18,2) default NULL,
+  `post_process` double(18,13) default NULL,
   `prediction_module` bigint(14) default '0',
   `max_timeout` int(4) unsigned default '0',
   PRIMARY KEY  (`id_agente_modulo`),