首先说明,还没成功,将过程记录如下,下次心血来潮时再努力

 

整体步骤:

1、内容模型——复制频道——修改模板
2、新建栏目(按新模型)
3、安装自动采集模块
4、修改co_add_step0.htm文件,增加其他模型的采集模块
5、采集插件好像有点问题,基本配置不起作用。得修改co_config.php文件内相关参数。

 

 

 

细节修改:

DEDE5.6 增加其他模型的采集模块的方法

打开后台templets文件夹 co_add_step0.htm 此文件
$dsql->SetQuery(‘Select id,typename From `#@__channeltype` where id in(1,2 这里加上你自己定义模型的ID) order by id asc ‘);
将where id in(1,2)删除
采集侠更改:

1、绑定自定义模型结点:

cjx.class.php文件:

$note = cjxdb(‘co_note’)->Fields(‘nid,notename’)->where(‘channelid=1’)->select();

中将->where(‘channelid=1’)去掉。

 

2、在采集任务里出现其他模型的栏目:

还是cjx.class.php文件:

$rs = cjxdb(‘arctype’)->where(array(‘ispart’=>0,’channeltype’=>1))->order(‘id asc’)->fields(‘id,typename’)->select();

中将,’channeltype’=>1去掉

 

共有 0 条评论