1、首先參照下載帝國(guó)CMS7.5安裝在網(wǎng)站根目錄,同時(shí)安裝完畢,另外在下載discuzX3.2到網(wǎng)站目錄club文件夾。并安裝完畢
2、按照帝國(guó)論壇教程http://bbs.phome.net/showthread-35-78648-0.html
3、在修改帝國(guó)CMS目錄下的e/config.inc.php文件配置:(UTF-8版要用dreamweaver或editplus修改,用記事本會(huì)將文件轉(zhuǎn)為gbk)
參照discuz目錄下:config/config_ucenter.php 配置帝國(guó)e/config.inc.php文件
最后實(shí)現(xiàn)后,發(fā)現(xiàn)在帝國(guó)上登陸和退出都可以在discuz里實(shí)現(xiàn),但是當(dāng)在discuz上登陸退出,在帝國(guó)就不行了。
解決辦法:
在DISCUZ的client.php文件中(默認(rèn)在uc_client目錄下):
找到365行左右
將以下代碼:
function uc_user_synlogin($uid) { $uid = intval($uid); if(@include UC_ROOT.'./data/cache/apps.php') { if(count($_CACHE['apps']) > 1) { $return = uc_api_post('user', 'synlogin', array('uid'=>$uid)); } else { $return = ''; } } return $return; } function uc_user_synlogout() { if(@include UC_ROOT.'./data/cache/apps.php') { if(count($_CACHE['apps']) > 1) { $return = uc_api_post('user', 'synlogout', array()); } else { $return = ''; } } return $return; }
改為:
function uc_user_synlogin($uid) { $uid = intval($uid); if(@include UC_ROOT.'./data/cache/apps.php') { if(count($_CACHE['apps']) > 1) { $return = uc_api_post('user', 'synlogin', array('uid'=>$uid)); } else { $return = uc_api_post('user', 'synlogin', array('uid'=>$uid)); } } return $return; } function uc_user_synlogout() { if(@include UC_ROOT.'./data/cache/apps.php') { if(count($_CACHE['apps']) > 1) { $return = uc_api_post('user', 'synlogout', array()); } else { $return = uc_api_post('user', 'synlogout', array()); } } return $return; }
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會(huì)員發(fā)布,如果侵犯了您的權(quán)益請(qǐng)與我們聯(lián)系,我們將在24小時(shí)內(nèi)刪除!謝謝!
轉(zhuǎn)載請(qǐng)注明: 帝國(guó)7.5二次開發(fā)整合discuzX3.2同時(shí)登陸退出