欢迎各位兄弟 发布技术文章
这里的技术是共享的
1)模块太多或者网站内容节点太多都会导致cron超时失败的, 只需要暂时关闭些消耗资源严重的模块(比如search index), cron就可以运行了,
aggregator 经常会有这个问题,暂时把它关闭掉,或者删除有问题的 feed 可能会有帮助。
2)cron运行失败后的办法:运行下DELETE FROM `variable` WHERE name = "cron_semaphore";
3)
1、增加 PHP 内存
2、includes\common.inc : //
function drupal_cron_run() {
// If not in 'safe mode', increase the maximum execution time:
if (!ini_get('safe_mode')) {
set_time_limit(240); '将240改为2400
}