欢迎来到元素模板ys720.com,本站提供专业的织梦模板PBOOTCMS模板网站模板网站修改/网站仿站
当前位置:主页 > 程序教程 > DEDECMS教程 >
DEDECMS教程

织梦会员邮件验证通知在https域名下验证链接404错误的解决方法

(元素模板) / 2020-03-22 18:33

织梦会员邮件验证通知在https域名下验证链接错误,程序默认只支持在http://的站点,我们需要改成让邮件支持http和https均可正常

以下文件如果你的网站里有的的没有,可跳过

1、打开 /member/index_do.php 找到,大概在31行

$url = 'http://'.preg_replace("#\/\/#i", '/', $url);

把它改成

$server_port = isset($_SERVER['SERVER_PORT']) && $_SERVER['SERVER_PORT'] == '443' ? 'https://' : 'http://';

$url = $server_port.preg_replace("/^(http|https):\/\//i", "", trim($url));

 

2、打开 /member/reg_new.php 找到,大概在250行

$url = 'http://'.preg_replace("#\/\/#", '/', $url);

把它改成

$server_port = isset($_SERVER['SERVER_PORT']) && $_SERVER['SERVER_PORT'] == '443' ? 'https://' : 'http://';

$url = $server_port.preg_replace("/^(http|https):\/\//i", "", trim($url));

 

3、打开 /member/mail.php 找到,大概在76行

$url = 'http://'.eregi_replace('//', '/', $url);

把它改成

$server_port = isset($_SERVER['SERVER_PORT']) && $_SERVER['SERVER_PORT'] == '443' ? 'https://' : 'http://';

$url = $server_port.preg_replace("/^(http|https):\/\//i", "", trim($url));

Copyright @ 2013-2021 元素模板 www.ys720.com All Rights Reserved. 版权所有 元素模板 www.ys720.com