花魁直播高品质美女在线视频互动社区 - 花魁直播官方版

 歡迎來到素材無憂網(wǎng),按 + 收藏我們
登錄 注冊 退出 找回密碼

解決discuz表崩潰 is marked as crashed之類問題

時間: 2019-05-24 11:57 閱讀: 作者:素材無憂網(wǎng)

此類問題 is marked as crashed and last (automatic?) repair failedDELETE FROM security_failedlog WHERE pid = 0 AND tid = 0 AND uid = 0 OR lastfailtime = 0 OR failcount >= 10,真是頭疼,天天要進后臺去點擊修復,甚至一天要好幾次,研究了好久終于解決了,方法很簡單,一勞永逸,打開discuz_table.php,在這里加入自動檢查修復的一段代碼就ok了,操作如下:
。。。。。。。。。。。。。。。。。。。。。。。。
        
public function __construct($para = array()) {
                if(!empty($para)) {
                        $this->_table = $para['table'];
                        $this->_pk = $para['pk'];
                }
                if(isset($this->_pre_cache_key) && (($ttl = getglobal('setting/memory/'.$this->_table)) !== null || ($ttl = $this->_cache_ttl) !== null) && memory('check')) {
                        $this->_cache_ttl = $ttl;
                        $this->_allowmem = true;
                }
        $this->repair();//解決表是否崩潰,新加進去的代碼
                $this->_init_extend();
                parent::__construct();
        }
    //解決表是否崩潰,新加進去的一個自己檢查是否需要修復的代碼
        public function repair() {
      $query1=DB::query('CHECK TABLE '.DB::table($this->_table));
          $checkresult =mysql_fetch_array($query1, MYSQL_ASSOC);
      //echo(DB::table($this->_table));
          //exit;                                
          if($checkresult['Msg_text'] != 'OK') {
          DB::query('REPAIR TABLE '.DB::table($this->_table));
                 }
                
        }

版權聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權益請與我們聯(lián)系,我們將在24小時內(nèi)刪除!謝謝!

轉(zhuǎn)載請注明: 解決discuz表崩潰 is marked as crashed之類問題

標簽:  
相關文章
模板推薦