發(fā)表日期:2018-08 文章編輯:小燈 瀏覽次數(shù):3254
本文為大家介紹一下DEDECMS遠(yuǎn)程圖片遇到Https無法本地化解決辦法,由于現(xiàn)在許多網(wǎng)站使用了HTTPS技術(shù),所以我們?cè)贒EDE后臺(tái)發(fā)布文章時(shí),可能會(huì)遇到對(duì)于https的就無法本地化的問題,關(guān)于http的遠(yuǎn)程圖片本地化,要想支持HTTPS,其實(shí)也非常簡(jiǎn)單,以下是解決辦法:
找到dede//inc/inc_archives_functions.php (注:前邊紅色的dede目錄是您的后臺(tái)目錄)
定位到文件里面GetCurContent($body)這個(gè)函數(shù)
將以下代碼:
preg_match_all("/src=[\"|’|\s]{0,}(http:\/\/([^>]*)\.(gif|jpg|png|jpeg|bmp))/isU",$body,$img_array); $img_array = array_unique($img_array[1]); |
改為:
preg_match_all("/src=[\"|’|\s]{0,}(http:\/\/([^>]*)\.(gif|jpg|png|jpeg|bmp))/isU",$body,$img_array); preg_match_all("/src=[\"|’|\s]{0,}(https:\/\/([^>]*)\.(gif|jpg|png|jpeg|bmp))/isU",$body,$img_array_https); $img_array = array_unique($img_array[1]); $img_array_https = array_unique($img_array_https[1]); $img_array=array_merge_recursive($img_array,$img_array_https); |
再找到:
if(!preg_match("#^http:\/\/#i", $value)) |
改為:
if(!preg_match("#^http:\/\/#i", $value)&&!preg_match("#^https:\/\/#i", $value)) { continue; } |
保存文件并上傳,這樣https的遠(yuǎn)程圖片本地化的問題就解決了!
PS:如果您的DEDE版本低于5.7,比如:5.5或5.1,請(qǐng)留言給我,解決方法不太一樣哦。
日期:2018-09 瀏覽次數(shù):3399
日期:2018-09 瀏覽次數(shù):4605
日期:2018-09 瀏覽次數(shù):3146
日期:2018-09 瀏覽次數(shù):3049
日期:2018-09 瀏覽次數(shù):3163
日期:2018-09 瀏覽次數(shù):2982
日期:2018-09 瀏覽次數(shù):3380
日期:2018-09 瀏覽次數(shù):3569
日期:2018-09 瀏覽次數(shù):3249
日期:2018-09 瀏覽次數(shù):3416
日期:2018-09 瀏覽次數(shù):3162
日期:2018-09 瀏覽次數(shù):3201
日期:2018-09 瀏覽次數(shù):3056
日期:2018-09 瀏覽次數(shù):2957
日期:2018-09 瀏覽次數(shù):3162
日期:2018-09 瀏覽次數(shù):3062
日期:2018-09 瀏覽次數(shù):4051
日期:2018-09 瀏覽次數(shù):3017
日期:2018-09 瀏覽次數(shù):3248
日期:2018-09 瀏覽次數(shù):3215
日期:2018-08 瀏覽次數(shù):3218
日期:2018-08 瀏覽次數(shù):3253
日期:2018-08 瀏覽次數(shù):2970
日期:2018-08 瀏覽次數(shù):3818
日期:2018-08 瀏覽次數(shù):3485
日期:2018-08 瀏覽次數(shù):3149
日期:2018-08 瀏覽次數(shù):4809
日期:2018-08 瀏覽次數(shù):3305
日期:2018-08 瀏覽次數(shù):3292
日期:2018-08 瀏覽次數(shù):3828
Copyright ? 2013-2018 Tadeng NetWork Technology Co., LTD. All Rights Reserved.