【实测】完美解决如何让游客在不登录情况下也可以对dz门户文章进行点赞表态
【注:修改前请先备份】
打开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');
- }
复制代码 再次打开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');
- }
复制代码 保存并上传,这时候无需登录就可以表态
|