新聞中心
disncuzX3.2關(guān)閉注冊(cè)郵箱必填選項(xiàng)
作者 / 無(wú)憂主機(jī) 時(shí)間 2014-10-20 12:18:59
大家好,今天無(wú)憂小編(www.gle-technology.com)和大家又見(jiàn)面了,最近有看到有站長(zhǎng)想去掉discuz注冊(cè)時(shí)候的郵箱必填選項(xiàng),在無(wú)憂主機(jī)購(gòu)買php虛擬主機(jī)時(shí),注冊(cè)用戶郵箱也是必填項(xiàng)哦。本來(lái)這個(gè)在x3.0 和 x3.1 版本時(shí)後臺(tái)可以設(shè)置的,但 x3.2 版本後臺(tái)又取消這個(gè)功能設(shè)置了。 不過(guò)既然有需求恢復(fù)這個(gè)功能,那么無(wú)憂小編(www.gle-technology.com)就把教程貼出來(lái)給大家: 1、第一步 source/admincp/admincp_setting.php 文件 查找
showsetting('setting_access_register_send_register_url', 'settingnew[sendregisterurl]', $setting['sendregisterurl'], 'radio');在這個(gè)代碼下添加:
showsetting('setting_access_register_forge_email', 'settingnew[forgeemail]', $setting['forgeemail'], 'radio');2、第二步 打開 source/language/lang_admincp.php 文件 查找: 個(gè)郵箱只允許註冊(cè)一個(gè)帳戶<br/>注意:只有在<a href="?action=setting&operation=mail">站長(zhǎng) - 郵件設(shè)置</a>中完成郵件設(shè)置,確保郵件能發(fā)送成功下可以開啟該功能 ', 或者(看是簡(jiǎn)體還是繁體): 一個(gè)郵箱只允許注冊(cè)一個(gè)帳戶<br/>注意:只有在<a href="?action=setting&operation=mail">站長(zhǎng) - 郵件設(shè)置</a>中完成郵件設(shè)置,確保郵件能發(fā)送成功下可以開啟該功能 在下面添加:
'setting_access_register_forge_email' => '取消注冊(cè)郵箱必填', 'setting_access_register_forge_email_comment' => '開啟后如果用不不填寫注冊(cè)郵箱,將自動(dòng)生成一個(gè)郵箱地址',或者:
'setting_access_register_forge_email' => '取消註冊(cè)郵箱必填', 'setting_access_register_forge_email_comment' => '開啟後如果用戶不填寫註冊(cè)郵箱,將自動(dòng)生成一個(gè)隨機(jī)郵箱地址',3、第三步: 修改
source/class/class_member.php 文件 $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)); } }這樣修改后,后臺(tái)就會(huì)出現(xiàn)一個(gè)注冊(cè)郵箱取消的功能。然后設(shè)置取消后,前臺(tái)也會(huì)相應(yīng)的變化了。 無(wú)憂主機(jī)相關(guān)文章推薦閱讀: 快速去除整站程序文件編碼中的BOM方法 解決DISCUZ“UC通信成功但通知失敗”問(wèn)題 DISCUZX3.2提示“DIY模板目錄不正確“的一個(gè)解決方法 DISCUZX論壇中DIY頁(yè)面對(duì)HTML的代碼長(zhǎng)度限制造成DIY頁(yè)面錯(cuò)位
本文地址:http://www.gle-technology.com/discuz/17147.html