dedecms织梦https站点图片无法远程本地化解决办法
一直以来我们都是以为HTTPS网站安全性增强了,无法采集复制图片本地化,通过技术上研究发现,通过修改织梦后台系统文件可以解决图片无法远程本地化。
今天我们详解dedecms织梦远程图片本地化https链接图片无法本地化,现在分享给大家,也给大家做个参考。
实现步骤:
找到 dede//inc/inc_archives_functions.php文件里面GetCurContent($body)这个函数,里面
找到代码:
preg_match_all("/src=["|'|s]{0,}(http://([^>]*).(gif|jpg|png))/isU",$body,$img_array); $img_array = array_unique($img_array[1]); |
改为:
preg_match_all("/src=["|'|s]{0,}(http://([^>]*).(gif|jpg|png))/isU",$body,$img_array); preg_match_all("/src=["|'|s]{0,}(https://([^>]*).(gif|jpg|png))/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)) { continue; } |
改为:
if(!preg_match("#^http://#i", $value)&&!preg_match("#^https://#i", $value)) { continue; } |