Esempio n. 1
0
 function pagelogin($inPath)
 {
     $kv = new SaeKV();
     $ret = $kv->init();
     if (!$ret) {
         $this->ShowMsg("你没有初始化KVDB!");
     }
     if (!file_exists('saekv://' . $_SERVER['HTTP_APPVERSION'] . '/install.lock')) {
         $this->ShowMsg("你还没有安装smpss!", base_Constant::ROOT_DIR . '/install/index.php');
     }
     $urlParams = $this->getUrlParams($inPath);
     if (!$_POST) {
         $this->params['head_title'] = "管理登录-" . $this->params['head_title'];
         return $this->render("main/login.html", $this->params);
     } else {
         $_POST = base_Utils::shtmlspecialchars($_POST);
         //session_start();
         //if(!SCaptcha::check($_POST['captcha'])){
         $modelAdmin = new m_admin();
         $loginInfo = $modelAdmin->checkLogin($_POST['username'], $_POST['pwd'], (int) $_POST['timeout']);
         if ($loginInfo) {
             $this->redirect($this->createUrl('/'));
         } else {
             $this->ShowMsg("用户名或者密码错误!");
         }
         //}else{
         //$this->ShowMsg("验证码错误!");
         //}
     }
 }
Esempio n. 2
0
 function pagelogin($inPath)
 {
     $urlParams = $this->getUrlParams($inPath);
     if (!$_POST) {
         $this->params['head_title'] = "管理登录-" . $this->params['head_title'];
         return $this->render("main/login.html", $this->params);
     } else {
         $_POST = base_Utils::shtmlspecialchars($_POST);
         //session_start();
         if (!SCaptcha::check($_POST['captcha'])) {
             $modelAdmin = new m_admin();
             $loginInfo = $modelAdmin->checkLogin($_POST['username'], $_POST['pwd'], (int) $_POST['timeout']);
             if ($loginInfo) {
                 $this->redirect($this->createUrl('/'));
             } else {
                 $this->ShowMsg("用户名或者密码错误!");
             }
         } else {
             $this->ShowMsg("验证码错误!");
         }
     }
 }