Hermann D. Schimpf - 2010-01-13 12:48:56
Make changes to the file phpinstaller/installer.class.php because some errors returned.
Line 135:
mysql_connect( $this->db_hostname, $this->db_username, $this->db_password ) or die( "database error" );
by:
mysql_connect( $this->db_hostname, $this->db_username, stripslashes($this->db_password) ) or die( "database error" );
before while in the line 143 add the following lines:
$TABLE = Array();
$SQL = Array();