disncuzX3.2-3.4关闭注册邮箱必填选项

[复制链接]
92 |9
发表于 4 天前 | 显示全部楼层 |阅读模式
版本请自测


1、第一步 source/admincp/admincp_setting.php 文件 查找



在这个代码下添加:


2、第二步 打開 source/language/lang_admincp.php 文件

查找: 一个邮箱只允许注册一个用户注意:只有在站长 - 邮件设置中完成邮件设置,确保邮件能送成功下可以开启该功能 ', 或者(看是简体还是繁体): 一个邮箱只允许注册一个帐户注意:只有在站长 - 邮件设置中完成邮件设置,确保邮件能发送成功下可以开启该功能 在下面添加:
'setting_access_register_forge_email' => '取消注册邮箱必填',
'setting_access_register_forge_email_comment' => '开启后如果用不不填写注册邮箱,将自动生成一个邮箱地址',
或者:
'setting_access_register_forge_email' => '取消註冊郵箱必填',
'setting_access_register_forge_email_comment' => '開啟後如果用戶不填寫註冊郵箱,將自動生成一個隨機郵箱地址',

3、第三步: 修改 文件

$email = strtolower(trim($_GET['email']));
if(empty($this->setting['ignorepassword'])) {
if($_GET['password'] !== $_GET['password2']) {
showmessage('profile_passwd_notmatch');
}

if(!$_GET['password'] || $_GET['password'] != addslashes($_GET['password'])) {
showmessage('profile_passwd_illegal');
}
$password = $_GET['password'];
} else {
$password = md5(random(10));
}
}

修改为:
$email = strtolower(trim($_GET['email']));
if(empty($email) && $_G['setting']['forgeemail']) {
$_GET['email'] = $email = strtolower(random(6)).'@'.$_SERVER['HTTP_HOST'];
}
if(empty($this->setting['ignorepassword'])) {
if($_GET['password'] !== $_GET['password2']) {
showmessage('profile_passwd_notmatch');
}

if(!$_GET['password'] || $_GET['password'] != addslashes($_GET['password'])) {
showmessage('profile_passwd_illegal');
}
$password = $_GET['password'];
} else {
$password = md5(random(10));
}
}
这样修改后,后台就会出现一个注册邮箱取消的功能。然后设置取消后,前台也会相应的变化了。
回复

使用道具 举报

发表于 4 天前 | 显示全部楼层
测试了一个方法,关闭不了
回复

使用道具 举报

发表于 4 天前 | 显示全部楼层
楼主用的是什么版本测试的??
回复

使用道具 举报

发表于 4 天前 | 显示全部楼层
关闭注册邮箱
回复

使用道具 举报

发表于 4 天前 | 显示全部楼层
看看,学习一下,谢谢分享。
回复

使用道具 举报

发表于 4 天前 | 显示全部楼层
好像没有效果哦,注册时不填写邮箱,还是会提示:邮箱地址无效。
回复

使用道具 举报

发表于 4 天前 | 显示全部楼层
安装插件即可https://addon.dismall.com/plugins/tshuz_removeemail.html
回复

使用道具 举报

发表于 4 天前 | 显示全部楼层
了不起牛逼   了不起牛逼  了不起牛逼
回复

使用道具 举报

发表于 4 天前 | 显示全部楼层
RE: disncuzX3.2-3.4关闭注册邮箱必填选项 [修改]
回复

使用道具 举报

发表于 4 天前 | 显示全部楼层
666666666666666666
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

快速回复 返回顶部 返回列表