欢迎来到素材无忧网,按 + 收藏我们
登录 注册 退出 找回密码

织梦自动更新手机端栏目列表页无效的解决办法

时间: 2019-04-22 11:20 阅读: 作者:素材无忧网

织梦自动更新手机端栏目列表页无效的解决办法:

我们在织梦里修改task_do.php这个文件能实现自动更新手机端首页、手机端内容页,但是手机端栏目页不会自动更新

\dede\task_do.php  (dede为后台目录) 找到

if(is_array($nextRow))

{

$envs['aid'] = $nextRow['id'];

$arc = new Archives($nextRow['id']);

$arc->MakeHtml();

}

在它的下面加入

//发布文章后自动生成移动版文章页、上一篇下一篇 开始

if($cfg_makemobile == 'Y')

{

define('DEDEMOB', 'Y');

$arc = new Archives($aid);

$arc->MakeHtml();

if(is_array($preRow))

{

$envs['aid'] = $preRow['id'];

$arc = new Archives($preRow['id']);

$arc->MakeHtml();

}

if(is_array($nextRow))

{

$envs['aid'] = $nextRow['id'];

$arc = new Archives($nextRow['id']);

$arc->MakeHtml();

}

}

//发布文章后自动生成移动版文章页、上一篇下一篇 结束


继续找到

$pv->SaveToHtml($homeFile);

在它的下面加入

//发布文章后自动生成移动版首页 开始

if($cfg_makemobile == 'Y')

{

$templet = str_replace("{style}", $cfg_df_style, $row['templet']);

$templet = str_replace('.htm','_m.htm',$templet);

$homeFile = dirname(__FILE__).'/'.str_replace("../", '../m/',$row['position']);

$homeFile = str_replace("//", "/", str_replace("\\", "/", $homeFile));

$fp = fopen($homeFile, 'w') or die("无法更新移动版主页到:$homeFile 位置");

fclose($fp);

$tpl = $cfg_basedir.$cfg_templets_dir.'/'.$templet;

if(!file_exists($tpl))

{

$tpl = $cfg_basedir.$cfg_templets_dir.'/default/index_m.htm';

if(!file_exists($tpl)) exit("无法找到移动版主页模板:$tpl ");

}

$GLOBALS['_arclistEnv'] = 'index';

$pv->SetTemplet($tpl);

$pv->SaveToHtml($homeFile);

}

//发布文章后自动生成移动版首页 结束


最后继续找到

require_once(DEDEINC."/arc.listview.class.php");

$lv = new ListView($tid);

$lv->CountRecord();

$lv->MakeHtml();

$lv->Close();

在它的下面加入

//发布文章后自动生成移动版列表页 开始

if($cfg_makemobile == 'Y')

{

define('DEDEMOB', 'Y');

$lv = new ListView($tid);

$lv->CountRecord();

$lv->MakeHtml();

$lv->Close();

}

//发布文章后自动生成移动版列表页 结束


我们需要修改/dede/task_do.php 与/dede/inc/inc_archives_functions.php才能实现手机端栏目页自动更新

修改后的2个文件打包下载:     提取码:咨询本站QQ:344693787获得

 

版权声明: 本站资源均来自互联网或会员发布,如果侵犯了您的权益请与我们联系,我们将在24小时内删除!谢谢!

转载请注明: 织梦自动更新手机端栏目列表页无效的解决办法

标签:  
相关文章
模板推荐