分享好友 教程首页 教程搜索 频道列表

DESTOON系统设置普通会员不自动绑定二级域名

2016-08-16 01:0519860
+关注29
核心提示:首先这个二级域名要开通,按照官方教程来做就行了,这里就不多说了。修改以下两处:...

首先这个二级域名要开通,按照官方教程来做就行了,这里就不多说了。

修改以下两处:

1.是修改 include\global.func.php中的userurl函数

 

function userurl($username, $qstring = ’’, $domain = ’’) {

global $CFG, $DT, $MODULE;

$URL = ’’;

if($username) {

$UserInfo = userinfo($username);//获得用户信息

if(($CFG[’com_domain’] && $UserInfo[’vip’]) || $domain) {//添加VIP判断

$URL = $domain ? ’https://’.$domain.’/’ : ’https://’.($DT[’com_www’] ? ’www.’ : ’’).$username.$CFG[’com_domain’].’/’;

if($qstring) {

parse_str($qstring, $q);

if(isset($q[’file’])) {

$URL .= $CFG[’com_dir’] ? $q[’file’].’/’ : ’company/’.$q[’file’].’/’;

unset($q[’file’]);

}

if($q) {

if($DT[’rewrite’]) {

//$URL .= ’home-’;

foreach($q as $k=>$v) {

$v = urlencode($v);

$URL .= $k.’-’.$v.’-’;

}

$URL = substr($URL, 0, -1).’.shtml’;

} else {

$URL .= ’index.php?’;

$i = 0;

foreach($q as $k=>$v) {

$v = urlencode($v);

$URL .= ($i  == 0 ? ’’ : ’&’).$k.’=’.$v;

}

}

}

}

} else if($DT[’rewrite’]) {

$URL = DT_URL.’com/’.$username.’/’;

if($qstring) {

parse_str($qstring, $q);

if(isset($q[’file’])) {

$URL .= $CFG[’com_dir’] ? $q[’file’].’/’ : ’company/’.$q[’file’].’/’;

unset($q[’file’]);

}

if($q) {

foreach($q as $k=>$v) {

$v = urlencode($v);

$URL .= $k.’-’.$v.’-’;

}

$URL = substr($URL, 0, -1).’.html’;

}

}

} else {

$URL = DT_URL.’index.php?homepage=’.$username;

if($qstring) $URL = $URL.’&’.$qstring;

}

} else {

$URL = linkurl($MODULE[4][’linkurl’], 1).’guest.php’;

}

return $URL;

}

 

第二步,是修改module\company\index.inc.php文件,在注释处添加个判断

 

defined(’IN_DESTOON’) or exit(’Access Denied’);

require DT_ROOT.’/module/’.$module.’/common.inc.php’;

$username = $domain = ’’;

if(isset($homepage) && check_name($homepage)) {

$username = $homepage;

} else {

$host = $_SERVER[’HTTP_HOST’];

if(substr($host, 0, 4) == ’www.’) {

$whost = $host;

$host = substr($host, 4);

} else {

$whost = $host;

}

if(strpos($MODULE[4][’linkurl’], $host) === false) {

$www = str_replace($CFG[’com_domain’], ’’, $host);

if(check_name($www)) {

$vip = userinfo($www);//获得用户信息

if($vip[’vip’]){//添加VIP判断

$username = $homepage = $www;

}

} else {

$c = $db->get_one("SELECT username,domain FROM {$DT_PRE}company WHERe domain=’$whost’".($host == $whost ? ’’ : " OR domain=’$host’"));

if($c) {

$username = $homepage = $c[’username’];

$domain = $c[’domain’];

}

}

}

}

 

if($username) {

include DT_ROOT.’/module/’.$module.’/init.inc.php’;

} else {

if($DT[’safe_domain’]) {

$safe_domain = explode(’|’, $DT[’safe_domain’]);

$pass_domain = false;

foreach($safe_domain as $v) {

if(strpos($DT_URL, $v) !== false) { $pass_domain = true; break; }

}

$pass_domain or exit(header("HTTP/1.1 404 Not Found"));

}

if(!check_group($_groupid, $MOD[’group_index’])) {

$head_title = lang(’message->without_permission’);

exit(include template(’noright’, ’message’));

}

if($MOD[’index_html’]) {

$html_file = DT_ROOT.’/’.$MOD[’moduledir’].’/index.inc.html’;

if(!is_file($html_file)) tohtml(’index’, $module);

exit(include($html_file));

}

include DT_ROOT.’/include/seo.inc.php’;

if($MOD[’seo_index’]) {

eval("\$seo_title = \"$MOD[seo_index]\";");

} else {

$seo_title = $seo_modulename.$seo_delimiter.$seo_sitename;

}

$taomodi_task = "moduleid=$moduleid&html=index";

include template(’index’, $module);

}

?>

整理员:小黑
免责声明:凡注明来源本网的所有作品,均为本网合法拥有版权或有权使用的作品,欢迎转载,注明出处。非本网作品均来自互联网,转载目的在于传递更多信息,并不代表本网赞同其观点和对其真实性负责。
生成海报
最新其他更多

DESTOON修改分表后最大数量值方案

    当DESTOON的内容开启分表后,默认每张表为10W数据值,感觉有点大,今天我们就把它改成5W一张表,开整

小黑 开发技术 12024-02-23

destoon商城模块与品牌关联的解决方案

    商城信息与品牌联动功能开发

网络转载 开发技术2024-01-21

php中过滤价格后面的.00小数

    这个一般用于客户特殊要求才会加上,页面上的价格不显示后面的小数,如:3000.00 ,过滤后就只显示 3000,使用如下代码(加在你需要的地方)

小黑 开发技术2023-12-01

修复DESTOON9.0网站留言页面提交后空白的问题

    函数有错误,导致后台填写了留言后邮箱通知发生页面空白

小黑 开发技术2023-11-04

修复DESTOON9.0微信扫码和支付宝扫码付款页面空白的问题

    函数有错误,导致后台填写了扫码付款通知手机或者邮箱发生页面空白

小黑 开发技术2023-11-03

下一篇
我来说两句
抢沙发