Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[求助] 解决discuz表崩溃 is marked as crashed之类问题

[复制链接]
findallove 发表于 2018-1-12 15:56:57 | 显示全部楼层 |阅读模式
[size=14.6667px]此类问题 is marked as crashed and last (automatic?) repair failed[size=14.6667px]DELETE 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));
                 }
               
        }
。。。。。。。。。。。。。。。。。。。
如果有不明白的,可以加我微信findallove

crx349 发表于 2018-1-12 17:18:02 | 显示全部楼层
感谢分享,确实是好方法,就是会影响点效率,建议还是调整下my.cnf把错表几率降低
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-29 20:57 , Processed in 0.015632 second(s), 3 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表