Index: core/install.php =================================================================== --- core/install.php (revision 14511) +++ core/install.php (working copy) @@ -355,30 +355,7 @@ } } else { - // non "root" user -> verify using licensing server - $url_params = Array ( - 'login=' . md5( $this->GetVar('login') ), - 'password=' . md5( $this->GetVar('password') ), - 'action=check', - 'license_code=' . base64_encode( $this->toolkit->getSystemConfig('Intechnic', 'LicenseCode') ), - 'version=' . '4.3.0',//$this->toolkit->GetMaxModuleVersion('core/'), - 'domain=' . base64_encode($_SERVER['HTTP_HOST']), - ); - - $license_url = GET_LICENSE_URL . '?' . implode('&', $url_params); - $file_data = curl_post($license_url, '', null, 'GET'); - - if (substr($file_data, 0, 5) == 'Error') { - $this->errorMessage = substr($file_data, 6) . ' If you don\'t know your username or password, contact Intechnic Support'; - } - - if ($this->errorMessage == '') { - $user_id = USER_ROOT; - $session =& $this->Application->recallObject('Session'); - $session->SetField('PortalUserId', $user_id); - $this->Application->SetVar('u.current_id', $user_id); - $this->Application->StoreVar('user_id', $user_id); - } + $this->errorMessage = 'Please use root user to login!'; } if ($this->errorMessage == '') {