Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[插件] 社区发贴之星(今日+昨日+本周+本月+本年)后台控制全Cache版 FOR DZ4.1正式版

[复制链接]
33201 发表于 2006-4-20 21:12:27 | 显示全部楼层 |阅读模式
插件名称:社区发贴之星(今日+昨日+本周+本月+本年发贴排行)后台控制全Cache版 FOR DZ4.1正式版
插件作者:33201
数据库升级:有
安装难度:中
插件演示地址:首页http://bbs.33201.com/index.php
                     社区之星页面http://bbs.33201.com/star.php


4.27日更新,应部分用户的强烈要求增加了昨日之星,并增加了单独的一个社区明星页面,新用户请全新安装,老用户想升级的方法见2楼,当然你也可以选择不升级,不会对插件造成任何影响
4.24日更新,修正了虚位以待时变形的问题,具体修正请将9.2步重新进行一遍
4.23日更新,修正了周社区之星在周日为空的问题,已经装过的修正方法见2楼
由于修改部分较多,强烈建议你在安装前备份文件!!


插件功能:
新增加的功能:

          1.首页显示今日+本周+本月+本年四类发帖状元、榜眼、探花,不分男女!可切换显示,有效增加会员
              的发贴 热情和参与度
          2.首页显示今日+本周+本月+本年发贴TOP10
          3.增加了一个单独的社区明星页面显示今日+昨日+本周+本月+本年五类发帖状元、榜眼、探花以及发贴TOP10
          4.修正了原来的状元、榜眼或探花不存在时的空白问题,在不存在时显示为虚位以待
          5.全部内容生成缓存cache,不增加任何查询,有效减轻服务器负担
原来的功能:
          1.首页显示当日发帖状元、榜眼、探花,不分男女!
          2.显示当日发帖最多的十位会员!
          3.后台控制是否显示,这样帖子较少的时候可以不显示!
          4.加入收缩展开功能(默认发帖状元、榜眼、探花三栏隐藏的,当然你也可以修改为展开的)!

原来的升级到现在版本的方法见2楼

插件安装步骤
如果不想要后台控制的话,可以跳过1-3步
1.后台升级数据库(在cdb_settings添加一个show_poststar一个值)
  1. INSERT INTO `cdb_settings` VALUES ('show_poststar', '1');
复制代码

2.编辑文件admin/setting.inc.php(后台显示功能设置内添加开关)
查找:
  1. showsetting('settings_nocacheheaders', 'settingsnew[nocacheheaders]', $settings['nocacheheaders'], 'radio');
复制代码

下面添加:
  1. showsetting('settings_show_poststar', 'settingsnew[show_poststar]', $settings['show_poststar'], 'radio');
复制代码

3,编辑语言包admincp.lang.php(后台管理页面显示的文字)
查找:
  1. 'settings_forumjump_comment' => '选择“是”将在列表页面下部显示快捷跳转菜单。注意: 当分论坛很多时,本功能会严重加重服务器负担',
复制代码

下面添加:
  1. 'settings_show_poststar' => '显示发帖冠军',
  2. 'settings_show_poststar_comment' => '选则“是”将在首页显示发帖冠军',
复制代码


4.上传附件!
5.编辑文件include/cache.func.php
5.1查找:
  1. 'medals'        => array('medals')
复制代码

在其上面加
  1. 'poststar'        => array('daystar', 'yestodaystar','weekstar', 'monthstar', 'yearstar'),
复制代码

5.2查找:

  1. case 'medals':
  2.                         $table = 'medals';
  3.                         $cols = 'medalid, name, image';
  4.                         $conditions = "WHERE available='1'";
  5.                         break;
复制代码

在其上面加

  1. //===============社区明星BY 33201 开始
  2.                 case 'daystar':
  3.                         $month=date(n);
  4.                         $date=date(j);
  5.                         $year=date(Y);
  6.                         $time=mktime(0,0,0,$month,$date,$year);
  7.                         $table = 'posts p';
  8.                         $cols = 'count(p.pid) as num,p.author,p.authorid,m.uid,m.credits,m.posts,m.digestposts ,me.avatar,m.oltime,me.avatarwidth,me.avatarheight';
  9.                         $conditions = "left join {$tablepre}members m on p.authorid=m.uid  left join {$tablepre}memberfields me on p.authorid=me.uid where p.dateline>$time  group by p.authorid order by num desc limit 0,10";
  10.                         break;
  11.                 case 'yestodaystar':
  12.                         $month=date(n);
  13.                         $date=date(j);
  14.                         $year=date(Y);
  15.                         $time=mktime(0,0,0,$month,$date,$year);
  16.                         $ytime=mktime(0,0,0,$month,$date-1,$year);
  17.                         $table = 'posts p';
  18.                         $cols = 'count(p.pid) as num,p.author,p.authorid,m.uid,m.credits,m.posts,m.digestposts ,me.avatar,m.oltime,me.avatarwidth,me.avatarheight';
  19.                         $conditions = "left join {$tablepre}members m on p.authorid=m.uid  left join {$tablepre}memberfields me on p.authorid=me.uid where p.dateline<=$time and p.dateline>$ytime  group by p.authorid order by num desc limit 0,10";
  20.                         break;
  21.                 case 'weekstar':
  22.                         $month=date(n);
  23.                         $date=date(j);
  24.                         $year=date(Y);
  25.                         $week=date(w);
  26.                         $time=mktime(0,0,0,$month,$date,$year);
  27.                         $weektime=mktime(0,0,0,$month,$date-$week,$year);
  28.                         $table = 'posts p';
  29.                         $cols = 'count(p.pid) as num,p.author,p.authorid,m.uid,m.credits,m.posts,m.digestposts ,me.avatar,m.oltime,me.avatarwidth,me.avatarheight';
  30.                         $conditions = "left join {$tablepre}members m on p.authorid=m.uid  left join {$tablepre}memberfields me on p.authorid=me.uid where p.dateline>=$weektime  group by p.authorid order by num desc limit 0,10";
  31.                         break;
  32.                 case 'monthstar':
  33.                         $month=date(n);
  34.                         $year=date(Y);
  35.                         $monthtime=mktime(0,0,0,$month,1,$year);
  36.                         $table = 'posts p';
  37.                         $cols = 'count(p.pid) as num,p.author,p.authorid,m.uid,m.credits,m.posts,m.digestposts ,me.avatar,m.oltime,me.avatarwidth,me.avatarheight';
  38.                         $conditions = "left join {$tablepre}members m on p.authorid=m.uid  left join {$tablepre}memberfields me on p.authorid=me.uid where p.dateline>=$monthtime  group by p.authorid order by num desc limit 0,10";
  39.                         break;
  40.                
  41.                 case 'yearstar':
  42.                         $year=date(Y);
  43.                         $yeartime=mktime(0,0,0,1,1,$year);
  44.                         $table = 'posts p';
  45.                         $cols = 'count(p.pid) as num,p.author,p.authorid,m.uid,m.credits,m.posts,m.digestposts ,me.avatar,m.oltime,me.avatarwidth,me.avatarheight';
  46.                         $conditions = "left join {$tablepre}members m on p.authorid=m.uid  left join {$tablepre}memberfields me on p.authorid=me.uid where p.dateline>=$yeartime  group by p.authorid order by num desc limit 0,10";
  47.                         break;

  48. //===================社区明星BY 33201 结束
复制代码

5.3 查找:

  1. case 'settings':
  2.                         $data['qihoo_links'] = array();
  3.                         while($setting = $db->fetch_array($query))
复制代码

在其上面加

  1. //===================社区明星BY 33201 开始
  2.                 case 'daystar':
  3.                         while($toppost = $db->fetch_array($query)) {
  4.                                 $toppost['author'] = $toppost['author'] ? $toppost['author'] : '游客';
  5.                                 $toppost['authorid'] = $toppost['authorid'] ? $toppost['authorid'] : '游客';
  6.                                 $toppost['avatar'] = $toppost['avatar'] ? $toppost['avatar'] : 'images/nopic.gif';
  7.                                 $toppost['avatarwidth'] = $toppost['avatarwidth'] ? $toppost['avatarwidth'] : '80';
  8.                                 $toppost['avatarheight'] = $toppost['avatarheight'] ? $toppost['avatarheight'] : '80';
  9.                                 $data[] = $toppost;
  10.                         }
  11.                         break;
  12.                 case 'yestodaystar':
  13.                         while($toppost = $db->fetch_array($query)) {
  14.                                 $toppost['author'] = $toppost['author'] ? $toppost['author'] : '游客';
  15.                                 $toppost['authorid'] = $toppost['authorid'] ? $toppost['authorid'] : '游客';
  16.                                 $toppost['avatar'] = $toppost['avatar'] ? $toppost['avatar'] : 'images/nopic.gif';
  17.                                 $toppost['avatarwidth'] = $toppost['avatarwidth'] ? $toppost['avatarwidth'] : '80';
  18.                                 $toppost['avatarheight'] = $toppost['avatarheight'] ? $toppost['avatarheight'] : '80';
  19.                                 $data[] = $toppost;
  20.                         }
  21.                         break;
  22.                 case 'weekstar':
  23.                         while($toppost = $db->fetch_array($query)) {
  24.                                 $toppost['author'] = $toppost['author'] ? $toppost['author'] : '游客';
  25.                                 $toppost['authorid'] = $toppost['authorid'] ? $toppost['authorid'] : '游客';
  26.                                 $toppost['avatar'] = $toppost['avatar'] ? $toppost['avatar'] : 'images/nopic.gif';
  27.                                 $toppost['avatarwidth'] = $toppost['avatarwidth'] ? $toppost['avatarwidth'] : '80';
  28.                                 $toppost['avatarheight'] = $toppost['avatarheight'] ? $toppost['avatarheight'] : '80';
  29.                                 $data[] = $toppost;
  30.                         }
  31.                         break;
  32.                 case 'monthstar':
  33.                         while($toppost = $db->fetch_array($query)) {
  34.                                 $toppost['author'] = $toppost['author'] ? $toppost['author'] : '游客';
  35.                                 $toppost['authorid'] = $toppost['authorid'] ? $toppost['authorid'] : '游客';
  36.                                 $toppost['avatar'] = $toppost['avatar'] ? $toppost['avatar'] : 'images/nopic.gif';
  37.                                 $toppost['avatarwidth'] = $toppost['avatarwidth'] ? $toppost['avatarwidth'] : '80';
  38.                                 $toppost['avatarheight'] = $toppost['avatarheight'] ? $toppost['avatarheight'] : '80';
  39.                                 $data[] = $toppost;
  40.                         }
  41.                         break;
  42.                 case 'yearstar':
  43.                         while($toppost = $db->fetch_array($query)) {
  44.                                 $toppost['author'] = $toppost['author'] ? $toppost['author'] : '游客';
  45.                                 $toppost['authorid'] = $toppost['authorid'] ? $toppost['authorid'] : '游客';
  46.                                 $toppost['avatar'] = $toppost['avatar'] ? $toppost['avatar'] : 'images/nopic.gif';
  47.                                 $toppost['avatarwidth'] = $toppost['avatarwidth'] ? $toppost['avatarwidth'] : '80';
  48.                                 $toppost['avatarheight'] = $toppost['avatarheight'] ? $toppost['avatarheight'] : '80';
  49.                                 $data[] = $toppost;
  50.                         }
  51.                         break;

  52. //=====================社区明星BY 33201 结束
复制代码

6.编辑文件include/newthread.inc.php
查找

  1. updatepostcredits('+', $discuz_uid, $postcredits);
复制代码

在其下面加

  1. require_once DISCUZ_ROOT.'./include/cache.func.php';
  2.                 updatecache('daystar');
复制代码

7.编辑文件include/newreply.inc.php
查找

  1. updatepostcredits('+', $discuz_uid, $replycredits);
复制代码

在其下面加

  1. require_once DISCUZ_ROOT.'./include/cache.func.php';
  2.                 updatecache('daystar');
复制代码

8.编辑文件topicadmin.php
查找

  1. showmessage((isset($resultarray['message']) ? $resultarray['message'] : 'admin_succeed'),
复制代码

在其面加

  1. require_once DISCUZ_ROOT.'./include/cache.func.php';
  2.                 updatecache('daystar');
复制代码

9.编辑文件index.php
9.1查找:
  1. require_once DISCUZ_ROOT.'./include/forum.func.php';
复制代码

下面添加:

  1. require_once DISCUZ_ROOT.'./forumdata/cache/cache_poststar.php';
  2. $month=date(n);
  3. $year=date(Y);
复制代码

9.2查找:
  1. unset($_DCACHE['announcements']);
复制代码

下面添加:

  1. //========== 社区明星BY 33201 开始
  2. $nopoststar ='<td width=17%>姓名:<font color=red><b> 虚位以待!</b></font> <br>UID  :<b>空</b> <br>积分:空 <br>精华:空<br>今日发帖:空<br>总发帖量:空<br> 在线时间:空 <br> </td><td width=16% align=center class=altbg1><img src=images/nopic.gif width=80 height=80 align=center></td>';
  3.     if($_DCACHE['daystar']) {
  4.                 foreach($_DCACHE['daystar'] as $key => $dstar) {
  5.             if ($key<3){
  6.                 $daystars .="<td width=17%>姓名:<b>".$dstar[author]."</b> <br>UID  :<b>".$dstar[authorid]."</b> <br>积分:".$dstar[credits]." <br>精华:".$dstar[digestposts]." 篇<br><font color=red><b>今日</b></font>发帖:<font color=red><b>".$dstar[num]."</b></font> 篇<br>总发帖量:".$dstar[posts]." 篇<br> 在线时间:".$dstar[oltime]." 小时<br> </td><td width=16% align=center class=altbg1><img src=".$dstar[avatar]." width=".$dstar[avatarwidth]." height=".$dstar[avatarheight]." align=center></td>";$n=$key;
  7. }
  8.                 }
  9. if($n==0){$nostar .=$nopoststar.$nopoststar;}elseif($n==1){$nostar .=$nopoststar;}
  10.         }
  11.     if($_DCACHE['weekstar']) {
  12.                 foreach($_DCACHE['weekstar'] as $key => $wstar) {
  13.             if ($key<3){
  14.                 $weekstars .="<td width=17%>姓名:<b>".$wstar[author]."</b> <br>UID  :<b>".$wstar[authorid]."</b> <br>积分:".$wstar[credits]." <br>精华:".$wstar[digestposts]." 篇<br><font color=red><b>本周</b></font>发帖:<font color=red><b>".$wstar[num]."</b></font> 篇<br>总发帖量:".$wstar[posts]." 篇<br> 在线时间:".$wstar[oltime]." 小时<br> </td><td width=16% align=center class=altbg1><img src=".$wstar[avatar]." width=".$wstar[avatarwidth]." height=".$wstar[avatarheight]." align=center></td>";$weeknum=$key;
  15.             }
  16.                 }
  17. if($weeknum==0){$noweekstar .=$nopoststar.$nopoststar;}elseif($weeknum==1){$noweekstar .=$nopoststar;}
  18.         }
  19.     if($_DCACHE['monthstar']) {
  20.                 foreach($_DCACHE['monthstar'] as $key => $mstar) {
  21.             if ($key<3){
  22.                 $monthstars .="<td width=17%>姓名:<b>".$mstar[author]."</b> <br>UID  :<b>".$mstar[authorid]."</b> <br>积分:".$mstar[credits]." <br>精华:".$mstar[digestposts]." 篇<br><font color=red><b>".$month."月</b></font>发帖:<font color=red><b>".$mstar[num]."</b></font> 篇<br>总发帖量:".$mstar[posts]." 篇<br> 在线时间:".$mstar[oltime]." 小时<br> </td><td width=16% align=center class=altbg1><img src=".$mstar[avatar]." width=".$mstar[avatarwidth]." height=".$mstar[avatarheight]." align=center></td>";
  23.             }
  24.                 }
  25.         }
  26.     if($_DCACHE['yearstar']) {
  27.                 foreach($_DCACHE['yearstar'] as $key => $ystar) {
  28.             if ($key<3){
  29.                 $yearstars .="<td width=17%>姓名:<b>".$ystar[author]."</b> <br>UID  :<b>".$ystar[authorid]."</b> <br>积分:".$ystar[credits]." <br>精华:".$ystar[digestposts]." 篇<br><font color=red><b>".$year."年</b></font>发帖:<font color=red><b>".$ystar[num]."</b></font> 篇<br>总发帖量:".$ystar[posts]." 篇<br> 在线时间:".$ystar[oltime]." 小时<br> </td><td width=16% align=center class=altbg1><img src=".$ystar[avatar]." width=".$ystar[avatarwidth]." height=".$ystar[avatarheight]." align=center></td>";
  30.             }
  31.                 }
  32.         }
  33. //==========社区明星BY 33201 结束
复制代码

10.编辑模板index.htm
查找:
  1. <!--{if empty($forumlist)}--><br><br><!--{else}--></table><br></div><div class="maintable"><!--{/if}-->
复制代码

下面加:

  1. <!--{if $show_poststar}-->
  2. {template show_poststar}
  3. <!--{/if}-->
复制代码

如果不想安装后台控制,请添加以下代码

  1. {template show_poststar}
复制代码


11.后台更新缓存,一定要更新,否则可能首页无法显示
完毕!
注意:默认首页发帖状元、榜眼、探花三栏是展开的,如果你想默认改为隐藏的就将show_poststar.htm
中的

  1. <tbody id="poststar" style="display:yes">
复制代码

yes 修改为 none 即可!


由于时间仓促和本人水平有限,难免存在一些BUG,大家有什么意见和建议还望大家及时提出,谢谢!









[ 本帖最后由 33201 于 2006-5-30 09:05 编辑 ]

评分

2

查看全部评分

 楼主| 33201 发表于 2006-4-20 21:14:10 | 显示全部楼层
老用户增加昨日社区之星的升级方法
1.编辑include/cache.func.php文件
1.1
查找:
  1. 'poststar'        => array('daystar','weekstar', 'monthstar', 'yearstar'),
复制代码

替换为:
  1. 'poststar'        => array('daystar', 'yestodaystar','weekstar', 'monthstar', 'yearstar'),
复制代码

1.2
查找:
  1.                 case 'weekstar':
  2.                         $month=date(n);
复制代码

在其上面加上:
  1.                 case 'yestodaystar':
  2.                         $month=date(n);
  3.                         $date=date(j);
  4.                         $year=date(Y);
  5.                         $time=mktime(0,0,0,$month,$date,$year);
  6.                         $ytime=mktime(0,0,0,$month,$date-1,$year);
  7.                         $table = 'posts p';
  8.                         $cols = 'count(p.pid) as num,p.author,p.authorid,m.uid,m.credits,m.posts,m.digestposts ,me.avatar,m.oltime,me.avatarwidth,me.avatarheight';
  9.                         $conditions = "left join {$tablepre}members m on p.authorid=m.uid  left join cdb_memberfields me on p.authorid=me.uid where p.dateline<=$time and p.dateline>$ytime  group by p.authorid order by num desc limit 0,10";
  10.                         break;
复制代码

1.3
查找:
  1.                 case 'weekstar':
  2.                         while($toppost = $db->fetch_array($query)) {
复制代码

在其上面加上:
  1.                 case 'yestodaystar':
  2.                         while($toppost = $db->fetch_array($query)) {
  3.                                 $toppost['author'] = $toppost['author'] ? $toppost['author'] : '游客';
  4.                                 $toppost['authorid'] = $toppost['authorid'] ? $toppost['authorid'] : '游客';
  5.                                 $toppost['avatar'] = $toppost['avatar'] ? $toppost['avatar'] : 'images/nopic.gif';
  6.                                 $toppost['avatarwidth'] = $toppost['avatarwidth'] ? $toppost['avatarwidth'] : '80';
  7.                                 $toppost['avatarheight'] = $toppost['avatarheight'] ? $toppost['avatarheight'] : '80';
  8.                                 $data[] = $toppost;
  9.                         }
  10.                         break;
复制代码

2.将附件中的star.php和templates/default/star.htm文件上传.
3.将附件中的templates/default/show_poststar.htm文件覆盖原来的文件.

升级完成!!
在星期日周社区明星显示为空的修正升级方法,全新安装的无须进行次步,文件已经更新

编辑include/cache.func.php文件

查找:

  1. $date+1-$week
复制代码


替换为:

  1. $date-$week
复制代码


即可
[quote]原帖由 月无痕 于 2006-4-20 22:28 发表



走形修正方法:

编辑附件中的show_poststar.htm文件

查找:

  1. width="{TABLEWIDTH}"
复制代码



后面加:

  1. align="center"
复制代码



一共有5
[/quote]
[quote]原帖由 big888 于 2006-4-21 01:27 发表


原来版本升级到现在版本:

一.跳过1-3步骤仅修改4~9步骤即可,和注意11.后台一定要先更新缓存
二.9.1步驟 index.php中
原來的這句要先刪掉


  1. require DISCUZ_ROOT.'/poststar.php';
复制代码
[/quote]

[ 本帖最后由 33201 于 2006-4-27 20:29 编辑 ]
回复

使用道具 举报

YY之王 发表于 2006-4-20 21:17:34 | 显示全部楼层
板凳~
回复

使用道具 举报

Seika 发表于 2006-4-20 21:18:52 | 显示全部楼层
~...
回复

使用道具 举报

killua_bo 发表于 2006-4-20 21:19:03 | 显示全部楼层
这个很需要!!支持一下!
回复

使用道具 举报

haocius 发表于 2006-4-20 21:22:14 | 显示全部楼层
最好搞得简单一点~
回复

使用道具 举报

kisslbz 发表于 2006-4-20 21:22:17 | 显示全部楼层
位置
回复

使用道具 举报

Seika 发表于 2006-4-20 21:40:21 | 显示全部楼层
5.25.3....

..
回复

使用道具 举报

yjflq2002 发表于 2006-4-20 21:47:51 | 显示全部楼层
顶一下下。
回复

使用道具 举报

啸傲V魔界 发表于 2006-4-20 22:00:49 | 显示全部楼层
原来的那个发帖冠军的基础上能升级吗?
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-4-19 02:38 , Processed in 0.139398 second(s), 18 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表