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

网站里有的的没有,可跳过

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

$url = ‘http://’.preg_replace(“#\/\/#i”, ‘/’, $url);

把它改成

$serverserver_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));

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。