PHP Classes

Bug solved

Recommend this page to a friend!

      PHP Installer  >  All threads  >  Bug solved  >  (Un) Subscribe thread alerts  
Subject:Bug solved
Summary:Make changes
Messages:1
Author:Hermann D. Schimpf
Date:2010-01-13 12:48:55
 

  1. Bug solved   Reply   Report abuse  
Picture of Hermann D. Schimpf 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();