1、織夢自定義圖片(僅網(wǎng)址)字段
當你添加外鏈圖片后
提交文檔后,程序下載圖片本地化時,最后得到的是一個數(shù)字,這是織夢程序的BUG
數(shù)字BUG解決方法
打開 /include/customfields.func.php 找到 大概在313行
$imgurl = $reimgs[1];
改成
$imgurl = $reimgs[0];
2、織夢自定義圖片字段https開頭的外部圖片,無法正常下載圖片本地化
https無法下載圖片本地化解決方法
打開 /include/customfields.func.php 找到 大概在302行
http
改成
(http|https)
打開 /dede/inc/inc_archives_all.php 找到 大概在222行
http
改成
(http|https)