BUG 12759 Problemas en las instalacion al momento de configurar el servidor MySql SOLVED

- Problemas en las instalacion al momento de configurar el servidor MySql
- Adjustment in the error message in the initial configuration.
This commit is contained in:
Hector Cortez
2013-08-28 10:11:09 -04:00
parent dc14e5790e
commit cf2057a8c9

View File

@@ -1164,7 +1164,7 @@ class Installer extends Controller
$db_password = $_REQUEST['db_password']; $db_password = $_REQUEST['db_password'];
$fp = @fsockopen( $db_hostname, $db_port, $errno, $errstr, 30 ); $fp = @fsockopen( $db_hostname, $db_port, $errno, $errstr, 30 );
if (! $fp) { if (! $fp) {
$info->message .= G::LoadTranslation('ID_CONNECTION_ERROR', SYS_LANG, Array($errstr ($errno))); $info->message .= G::LoadTranslation('ID_CONNECTION_ERROR', SYS_LANG, Array("$errstr ($errno)"));
return $info; return $info;
} }
@@ -1204,7 +1204,7 @@ class Installer extends Controller
$fp = @fsockopen( $db_hostname, $db_port, $errno, $errstr, 30 ); $fp = @fsockopen( $db_hostname, $db_port, $errno, $errstr, 30 );
if (! $fp) { if (! $fp) {
$info->message .= G::LoadTranslation('ID_CONNECTION_ERROR', SYS_LANG, Array($errstr ($errno))); $info->message .= G::LoadTranslation('ID_CONNECTION_ERROR', SYS_LANG, Array("$errstr ($errno)"));
return $info; return $info;
} }