|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?立即注册
x
1、找到文件:source/module/home/home_spacecp.php,注释或删除
if(empty($_G['uid'])) { if($_SERVER['REQUEST_METHOD'] == 'GET') { dsetcookie('_refer', rawurlencode($_SERVER['REQUEST_URI'])); } else { dsetcookie('_refer', rawurlencode('home.php?mod=spacecp&ac='.$ac)); } showmessage('to_login', '', array(), array('showmsg' => true, 'login' => 1)); } 找到:
if(empty($space)) { showmessage('space_does_not_exist'); } 注释或删除。2、找到文件:/source/include/spacecp/spacecp_click.php
if(!checkperm('allowclick') || $_GET['hash'] != $hash) { showmessage('no_privilege_click'); } 注释或删除。
if(C::t('home_clickuser')->count_by_uid_id_idtype($space[uid], $id, $idtype)) { showmessage('click_have'); } 注释或删除。
3、在/source/include/spacecp/spacecp_click.php添加开启session机制。
在头部添加:
在刚才删除或注释的:
/*if(C::t('home_clickuser')->count_by_uid_id_idtype($space['uid'], $id, $idtype)) { showmessage('click_have'); }*/ 下面添加:
if($_SESSION['vote'] == session_id()){ showmessage('click_have'); } $_SESSION['vote'] = session_id(); 更新缓存即可。
|
|