-
修改
inc_archives_functions.php
文件- 找到
GetCurContent($body)
函数中的正则表达式:preg_match_all("/src=['\"\\s]{0,}(http://([^>]*).(gif|jpg|png|jpeg|bmp))/isU", $body, $img_array);
- 修改为:
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
判断条件- 找到:
if(!preg_match("#^http://#i", $value)) { continue; }
- 修改为:
if(!preg_match("#^http://#i", $value) && !preg_match("#^https://#i", $value)) { continue; }
- 找到:
登录DEDECMS提示用户名不存在的原因及解决办法
- 检查数据库
- 使用
phpMyAdmin
等工具进入数据库,查看dede_admin
表中的用户名是否正确。
- 使用