PHPCMS V9采集地址中有相对路径的问题及解决方法

2024-11-26 39阅读 0评论

修改数据库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]" value="<?php if(isset($data['replace_from'])) echo $data['replace_from']?>"/>替换为 
<input type="text" name="data[replace_to]" 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都可以。 
然后在采集管理中我们能看到有替换网址的选项啦。将多余的../之类的替换掉就行了。

文章版权声明:除非注明,否则均为奥多云原创文章,转载或复制请以超链接形式并注明出处。

发表评论

快捷回复: 表情:
评论列表 (暂无评论,39人围观)

还没有评论,来说两句吧...

取消
微信二维码
微信二维码
支付宝二维码