现在很多网站都开始使用了https,在换友情链接的时候要填写https开头的网址,可是phpcms v9却只能填写以http开头的网站,该如何修改呢?下面是给您总结的方法,希望对您有所帮助。
1、打开 phpcmsmoduleslinkindex.php 文件,找到
if($_POST['url']=="" || !preg_match('/^http://(.*)/i', $_POST['url'])){ showmessage(L('siteurl_not_empty'),"?m=link&c=index&a=register&siteid=$siteid"); }
修改为:
if($_POST['url']=="" || !preg_match('/^(http://|https://)(.*)/i', $_POST['url'])){ showmessage(L('siteurl_not_empty'),"?m=link&c=index&a=register&siteid=$siteid"); }
找到
$logo = safe_replace(strip_tags($_POST['logo'])); if(!preg_match('/^http://(.*)/i', $logo)){ $logo = ''; }
修改为:
$logo = safe_replace(strip_tags($_POST['logo'])); if(!preg_match('/^(http://|https://)(.*)/i', $logo)){ $logo = ''; }
2、打开 phpcmsmoduleslinktemplateslink_add.tpl.php 文件,找到
$("#link_url").formValidator({onshow:"<?php echo L("input").L('url')?>",onfocus:"<?php echo L("input").L('url')?>"}).inputValidator({min:1,onerror:"<?php echo L("input").L('url')?>"}).regexValidator({regexp:"^http://[A-Za-z0-9]+.[A-Za-z0-9]+[/=?%-&]*([^<>])*$",onerror:"<?php echo L('link_onerror')?>"})
修改为:
$("#link_url").formValidator({onshow:"<?php echo L("input").L('url')?>",onfocus:"<?php echo L("input").L('url')?>"}).inputValidator({min:1,onerror:"<?php echo L("input").L('url')?>"}).regexValidator({regexp:"^(http://|https://)[A-Za-z0-9]+.[A-Za-z0-9]+[/=?%-&]*([^<>])*$",onerror:"<?php echo L('link_onerror')?>"})