当前位置: 首页 > 站长资讯 > 正文页面

discuz教程:计划任务每日不执行更新怎么办

问题是 计划任务不执行了,没次都需要手动执行。一般问题表现在论坛首页 今日 昨日 帖子 不刷新。 如图:VqF网站目录_网站网址收录与提交入口


VqF网站目录_网站网址收录与提交入口

这种情况一般是 有些插件的计划任务不执行导致的。VqF网站目录_网站网址收录与提交入口

解决办法:VqF网站目录_网站网址收录与提交入口

到后台-工具-计划任务查看一下,一般插件的计划任务都是在第一个,官方内置的计划任务都是cron_开头的。如图:VqF网站目录_网站网址收录与提交入口


VqF网站目录_网站网址收录与提交入口

找到这个计划任务。如果可以删除的话,直接删除即可。VqF网站目录_网站网址收录与提交入口

如果删除不了的话。查看该插件是否未开启或者已删除,直接到数据库找到pre_common_cron这个表删除这个计划任务。如图:VqF网站目录_网站网址收录与提交入口


VqF网站目录_网站网址收录与提交入口

以上办法都无法解决可以考虑重置这个表pre_common_cron,到数据库执行如下字段即可。VqF网站目录_网站网址收录与提交入口

DROP TABLE IF EXISTS pre_common_cron;VqF网站目录_网站网址收录与提交入口

CREATE TABLE `pre_common_cron` (VqF网站目录_网站网址收录与提交入口

`cronid` smallint(6) unsigned NOT NULL auto_increment,VqF网站目录_网站网址收录与提交入口

`available` tinyint(1) NOT NULL default '0',VqF网站目录_网站网址收录与提交入口

`type` enum('user','system','plugin') NOT NULL default 'user',VqF网站目录_网站网址收录与提交入口

`name` char(50) NOT NULL default '',VqF网站目录_网站网址收录与提交入口

`filename` char(50) NOT NULL default '',VqF网站目录_网站网址收录与提交入口

`lastrun` int(10) unsigned NOT NULL default '0',VqF网站目录_网站网址收录与提交入口

`nextrun` int(10) unsigned NOT NULL default '0',VqF网站目录_网站网址收录与提交入口

`weekday` tinyint(1) NOT NULL default '0',VqF网站目录_网站网址收录与提交入口

`day` tinyint(2) NOT NULL default '0',VqF网站目录_网站网址收录与提交入口

`hour` tinyint(2) NOT NULL default '0',VqF网站目录_网站网址收录与提交入口

`minute` char(36) NOT NULL default '',VqF网站目录_网站网址收录与提交入口

PRIMARY KEY (`cronid`),VqF网站目录_网站网址收录与提交入口

KEY `nextrun` (`available`,`nextrun`)VqF网站目录_网站网址收录与提交入口

) ENGINE=MyISAM DEFAULT CHARSET=gbk AUTO_INCREMENT=22 ;VqF网站目录_网站网址收录与提交入口

INSERT INTO `pre_common_cron` (`cronid`, `available`, `type`, `name`, `filename`, `lastrun`, `nextrun`, `weekday`, `day`, `hour`, `minute`) VALUESVqF网站目录_网站网址收录与提交入口

(1, 1, 'system', '清空今日发帖数', 'cron_todaypost_daily.php', 1416342963, 1416412800, -1, -1, 0, '0'),VqF网站目录_网站网址收录与提交入口

(2, 1, 'system', '清空本月在线时间', 'cron_onlinetime_monthly.php', 1414791807, 1417363200, -1, 1, 0, '0'),VqF网站目录_网站网址收录与提交入口

(3, 1, 'system', '每日数据清理', 'cron_cleanup_daily.php', 1416357390, 1416432600, -1, -1, 5, '30'),VqF网站目录_网站网址收录与提交入口

(5, 1, 'system', '每日公告清理', 'cron_announcement_daily.php', 1416346616, 1416412800, -1, -1, 0, '0'),VqF网站目录_网站网址收录与提交入口

(6, 1, 'system', '限时操作清理', 'cron_threadexpiry_hourly.php', 1416357391, 1416358800, -1, -1, -1, '0'),VqF网站目录_网站网址收录与提交入口

(7, 1, 'system', '论坛推广清理', 'cron_promotion_hourly.php', 1416347376, 1416412800, -1, -1, 0, '00'),VqF网站目录_网站网址收录与提交入口

(8, 1, 'system', '每月主题清理', 'cron_cleanup_monthly.php', 1414860761, 1417384800, -1, 1, 6, '00'),VqF网站目录_网站网址收录与提交入口

(9, 1, 'system', '道具自动补货', 'cron_magic_daily.php', 1416347946, 1416412800, -1, -1, 0, '0'),VqF网站目录_网站网址收录与提交入口

(10, 1, 'system', '每日验证问答更新', 'cron_secqaa_daily.php', 1416357391, 1416434400, -1, -1, 6, '0'),VqF网站目录_网站网址收录与提交入口

(11, 1, 'system', '每日标签更新', 'cron_tag_daily.php', 1416347946, 1416412800, -1, -1, 0, '0'),VqF网站目录_网站网址收录与提交入口

(12, 1, 'system', '每日勋章更新', 'cron_medal_daily.php', 1416347947, 1416412800, -1, -1, 0, '0'),VqF网站目录_网站网址收录与提交入口

(13, 1, 'system', '清理过期动态', 'cron_cleanfeed.php', 1416347948, 1416412800, -1, -1, 0, '0'),VqF网站目录_网站网址收录与提交入口

(14, 1, 'system', '每日获取安全补丁', 'cron_checkpatch_daily.php', 1416353617, 1416421320, -1, -1, 2, '22'),VqF网站目录_网站网址收录与提交入口

(15, 1, 'system', '定时发布主题', 'cron_publish_halfhourly.php', 1416357391, 1416358800, -1, -1, -1, '0 30'),VqF网站目录_网站网址收录与提交入口

(16, 1, 'system', '每周广播归档', 'cron_follow_daily.php', 1416350694, 1416420000, -1, -1, 2, '0'),VqF网站目录_网站网址收录与提交入口

(17, 1, 'system', '更新每日查看数', 'cron_todayviews_daily.php', 1416357389, 1416423600, -1, -1, 3, '0 5 10 15 20 25 30 35 40 45 50 55'),VqF网站目录_网站网址收录与提交入口

(18, 0, 'system', '每日用户表优化', 'cron_member_optimize_daily.php', 1377225651, 0, -1, -1, 2, '0 5 10 15 20 25 30 35 40 45 50 55'),VqF网站目录_网站网址收录与提交入口

(19, 0, 'user', '防水墙每日优化', 'cron_security_daily.php', 1416351485, 1416420000, -1, -1, 2, '0'),VqF网站目录_网站网址收录与提交入口

(20, 1, 'system', '统计今日热帖', 'cron_todayheats_daily.php', 1416348808, 1416412800, -1, -1, 0, '0'),VqF网站目录_网站网址收录与提交入口

(21, 0, 'user', '更新版块最后发表(防水墙相关)', 'cron_security_cleanup_lastpost.php', 0, 0, -1, -1, -1, '0');VqF网站目录_网站网址收录与提交入口

到此问题即可解决。VqF网站目录_网站网址收录与提交入口

  

此文由 网站目录_网站网址收录与提交入口 编辑,未经允许不得转载!:

相关文章