Index: install.php =================================================================== --- install.php (revision 14512) +++ install.php (working copy) @@ -342,16 +342,19 @@ case 'install_setup': $next_preset = $this->Application->GetVar('next_preset'); if ($next_preset !== false) { + $user_helper =& $this->Application->recallObject('UserHelper'); + /* @var $user_helper UserHelper */ + if ($this->Application->GetVar('login') == 'root') { // verify "root" user using configuration settings - $login_event = new kEvent('u.current:OnLogin'); - $this->Application->HandleEvent($login_event); + $login_status = $user_helper->loginUser( + $this->Application->GetVar('login'), + $this->Application->GetVar('password') + ); - if ($login_event->status != erSUCCESS) { - $user =& $this->Application->recallObject('u.current'); - /* @var $user UsersItem */ - - $this->errorMessage = $user->GetErrorMsg('ValidateLogin') . '. If you don\'t know your username or password, contact Intechnic Support'; + if ( $login_status != LOGIN_RESULT_OK ) { + $error_phrase = $login_status == LOGIN_RESULT_NO_PERMISSION ? 'la_no_permissions' : 'la_invalid_password'; + $this->errorMessage = $this->Application->Phrase($error_phrase) . '. If you don\'t know your username or password, contact Intechnic Support'; } } else { Index: install/install_toolkit.php =================================================================== --- install/install_toolkit.php (revision 14476) +++ install/install_toolkit.php (working copy) @@ -37,7 +37,7 @@ * Url used for retrieving user licenses from Intechnic licensing server * */ - define('GET_LICENSE_URL', 'http://www.intechnic.com/myaccount/license.php'); + define('GET_LICENSE_URL', 'http://www.in-portal.com/license.php'); } /**