系统中根本就没有在浏览的地方添加浏览扣除积分的代码,不管怎么操作都不可能扣除积分的
在index.php文件中找到下面一段代码:- //频道关闭隐藏
- if(($_SGET['action'] == 'channel' && in_array($_SGET['name'], $_SCONFIG['closechannels'])) || in_array($_SGET['action'], $_SCONFIG['closechannels']) || ($_SGET['action'] == 'bbs' && !discuz_exists()) || (in_array($_SGET['action'], array('uchblog', 'uchimage', 'blogdetail', 'bloglist', 'imagedetail', 'imagelist')) && !uchome_exists())) {
- $_SGET['action'] = 'index';
- }
复制代码 在后面添加两句:- // 处理浏览积分
- getreward('view');
复制代码 即可实现浏览扣除积分的功能
注:上在两句代码,加在不同的页面可以控制不同页面浏览扣除积分的功能。
使用时请注意。 |