PHPCMS V9在采集过程中出现相对路径的处理方案

来源:爱站网时间:2022-04-18编辑:网友分享
PHPCMS V9在采集过程中出现相对路径的处理方案是什么你还知道吗?带着这个问题,下面来看看爱站技术频道小编所整理的资料,感兴趣的朋友可以自行参考下。

修改数据库v9_collection_node,增加两个字段replace_from,replace_to(varchar(200))
1、 /phpcms/modules/collection/templates/node_form.tpl.php第99行后增加(位置在</table></fieldset>之前)
<tr>
<td width="120">网址替换:</td>
<td>
<input type="text" name="data[replace_from]" style="width:250px" value="<?php if(isset($data['replace_from'])) echo $data['replace_from']?>"/>替换为
<input type="text" name="data[replace_to]" style="width:250px" value="<?php if(isset($data['replace_to'])) echo $data['replace_to']?>"/>
</td>
</tr>
2、 /phpcms/modules/collection/classes/collection.class.php第177行后增加(位置在:$html = str_replace(array("</a>", "</A>"), "</a> ", $html);之后)
if(!empty($config['replace_from'])){
$html = str_replace($config['replace_from'], $config['replace_to'], $html);}
3、 进入数据库给 数据库名_collection_node 增加字段:replace_from 和 replace_to 两个字段。字数50-100都可以。
然后在采集管理中我们能看到有替换网址的选项啦。将多余的../之类的替换掉就行了。

如果遇到PHPCMS V9在采集过程中出现相对路径的问题,不妨看看爱站技术频道小编整理的资料,或多或少能在工作中帮助到你。

上一篇:index.html没有办法被phpcms读取的原因和解决方案

下一篇:phpcms v9栏目信息标签

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载