首页 > 代码库 > phpcms采集地址中为相对路径解决方法
phpcms采集地址中为相对路径解决方法
1.修改数据库v9_collection_node,增加两个字段replace_from,replace_to(varchar(200))
2./phpcms/modules/collection/templates/node_form.tpl.php第99行后增加
<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>
3./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);
phpcms采集地址中为相对路径解决方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。