diff --git a/INSTALL_DEBIAN.txt b/INSTALL_DEBIAN.txt
index 437e7e71b08b40644bcfa03e8feb4911300dfa75..8ec5ec143ba37da783ccfebdd344be4d283c7a69 100644
--- a/INSTALL_DEBIAN.txt
+++ b/INSTALL_DEBIAN.txt
@@ -16,11 +16,28 @@ Mail name? <-- server1.mydomain.tld
 
 ...use your own domain name of course ;)
 
+Edite the file /etc/mysql/my.cnf
+
+vi /etc/mysql/my.cnf
+
+and comment out the line
+
+bind-address          = 127.0.0.1
+
+then restart mysql
+
+/etc/init.d/mysql restart
+
+Set the mysql database password:
+
+mysqladmin -u root password yourrootsqlpassword
+mysqladmin -h ispconfig.local -u root password yourrootsqlpassword
+
+
 2) Install Amavisd-new, Spamassassin and Clamav (1 line!):
 
 apt-get install amavisd-new spamassassin clamav clamav-daemon zoo unzip bzip2 arj nomarch lzop cabextract apt-listchanges libnet-ldap-perl libauthen-sasl-perl clamav-docs daemon libio-string-perl libio-socket-ssl-perl libnet-ident-perl zip libnet-dns-perl
 
-
 3) Install apache, PHP5 and phpmyadmin (1 line!):
 
 apt-get install apache2 apache2.2-common apache2-doc apache2-mpm-prefork apache2-utils libexpat1 ssl-cert libapache2-mod-php5 php5 php5-common php5-gd php5-mysql php5-imap phpmyadmin php5-cli
@@ -58,6 +75,15 @@ Then execute:
 
 apt-get install mydns-mysql
 
+-> localhost
+-> mydns
+Would you like to set up the database and tables automatically? -> yes
+What is the username of the MySQL administrator? -> root
+Enter the MySQL administrator password -> yourrootsqlpassword
+Confirm this password -> yourrootsqlpassword
+What is the MyDNS username? -> mydns
+What is the MyDNS user password? -> mydnspassword
+
 The mydns installer is a bit tricky, you will have to select to create a new database for mydns and use a existing mysql user, e.g. the mysql root user. This database is only to fullfill the requirements for the debian pacakge during installation and will not be used by ISPConfig later. ISPConfig will automatically change the mydns configuration files to use the ISPConfig database.
 
 
diff --git a/install/lib/installer_base.lib.php b/install/lib/installer_base.lib.php
index 2f8a1e56521aa63e782da1eae7c06100eb823e91..d7c104c624d4930b53af361e477a75bbdc95851c 100644
--- a/install/lib/installer_base.lib.php
+++ b/install/lib/installer_base.lib.php
@@ -156,8 +156,8 @@ class installer_base {
 	//** Create a recors in the
 	public function add_database_server_record() {
 		
-		$server_ini = rf("tpl/server.ini.master");
-		$server_ini = addslashes($server_ini_content);
+		$server_ini_content = rf("tpl/server.ini.master");
+		$server_ini_content = addslashes($server_ini_content);
 		
 		$sql = "INSERT INTO `server` (`sys_userid`, `sys_groupid`, `sys_perm_user`, `sys_perm_group`, `sys_perm_other`, `server_name`, `mail_server`, `web_server`, `dns_server`, `file_server`, `db_server`, `vserver_server`, `config`, `updated`, `active`) VALUES (1, 1, 'riud', 'riud', 'r', 'Server', 1, 1, 1, 1, 1, 1, '$server_ini_content', 0, 1);";
 		$this->db->query($sql);