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

  织梦会员邮件验证通知在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));

☉免责声明:本站所有模板均来自用户分享和网络收集,仅供学习与参考,请勿用于商业用途,如果损害了您的权利,请联系网站客服,我们核实后会立即删除。
☉本站提供的源码、模板、软件工具等其他资源,都不包含技术服务,请大家谅解!
pbootcms模板网 » 织梦会员邮件验证通知在https域名下验证链接404错误的解决方法

Pbootcms模板网 提供优质的模板集合

立即查看 了解详情