系統(tǒng)軟件園 - 專(zhuān)注分享最好的電腦系統(tǒng)軟件!免費(fèi)安全下載 系統(tǒng)軟件園首頁(yè) | Win7激活工具 | 熱門(mén)專(zhuān)題
系統(tǒng)軟件園>您的位置:首頁(yè) > > 系統(tǒng)教程 > 軟件教程 >

phpcms v9 不能加https友情鏈接的完美解決方法

更新時(shí)間:2019-11-15 12:56:36| 編輯:本站整理 | 信息來(lái)源:本站整理|瀏覽數(shù):
現(xiàn)在很多站都用上了https加密鏈接,但是一些使用phpcms v9的朋友發(fā)現(xiàn)不能加帶https的友情鏈接,添加時(shí)會(huì)提示不合法,這是由于php中判斷沒(méi)有加入https導(dǎo)致的,下面小編分享完美的解決方法,改幾個(gè)php文件就可以了。

phpcms v9 不能加https友情鏈接的完美解決方法

1、打開(kāi) \phpcms\modules\link\index.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、打開(kāi) \phpcms\modules\link\templates\link_add.tpl.php 文件,找到
 
$("#link_url").formValidator({onshow:"",onfocus:""}).inputValidator({min:1,onerror:""}).regexValidator({regexp:"^http:\/\/[A-Za-z0-9]+\.[A-Za-z0-9]+[\/=\?%\-&]*([^<>])*$",onerror:""})
 
修改為:
 
$("#link_url").formValidator({onshow:"",onfocus:""}).inputValidator({min:1,onerror:""}).regexValidator({regexp:"^(http:\/\/|https:\/\/)[A-Za-z0-9]+\.[A-Za-z0-9]+[\/=\?%\-&]*([^<>])*$",onerror:""})
3、打開(kāi) \phpcms\modules\link\templates\link_edit.tpl.php 文件,和上面\link_add.tpl.php的方法一樣修改就可以了。


之后大家可以在后臺(tái)更新一下緩存就可以添加https的網(wǎng)站友情鏈接了

返回頂部


系統(tǒng)軟件園發(fā)布的系統(tǒng)鏡像及軟件均來(lái)至互聯(lián)網(wǎng),僅供學(xué)習(xí)和研究使用,不得用于任何商業(yè)用途并請(qǐng)?jiān)谙螺d后24小時(shí)內(nèi)刪除,如果滿(mǎn)意請(qǐng)聯(lián)系版權(quán)方購(gòu)買(mǎi)。
如果您發(fā)現(xiàn)本站侵害了您的版權(quán),請(qǐng)立即聯(lián)系我們,本站將第一時(shí)間進(jìn)行相關(guān)處理。聯(lián)系方式(見(jiàn)首頁(yè))
版權(quán)聲明|下載聲明 Copyright @ 2016 系統(tǒng)軟件園