MilkZoft / ZanPHP

ZanPHP is an agile Web application development framework written in PHP5 that uses different design patterns and best practices to create applications more quickly with good quality code.
http://www.zanphp.com
Other
90 stars 42 forks source link

Error en la clase: dp.php #49

Closed hasdman closed 12 years ago

hasdman commented 12 years ago

Hay un error al crear la conexión a mysql si no se utiliza un puerto estandar (3306). Linea 224 (zan\classes\db.php):

Actual: $this->Database = new PDO("mysql:host=". $this->db["dbHost"] .";dbname=". $this->db["dbName"], $this->db["dbUser"], $this->db["dbPwd"]);

Corrección: $this->Database = new PDO("mysql:host=". $this->db["dbHost"] .":".$this->db["dbPort"].";dbname=". $this->db["dbName"], $this->db["dbUser"], $this->db["dbPwd"]);

Saludos!

MilkZoft commented 12 years ago

Solucionado.