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

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[发布] Easy Digg for 6.0 GBK(安装可用,修改了,提供下载)

[复制链接]
litaowan 发表于 2007-10-20 16:21:21 | 显示全部楼层 |阅读模式
原帖是https://discuz.dismall.com/viewth ... d=277216&page=1 是utf8的 一直跟作者请求发GBk的 没有发 自己弄下 反正在我的社区是能用了 你们自己的看下

我截个图

再给个演示http://www.litaowan.com/redirect ... o=lastpost#lastpost
电信的访问这个http://bbs.litaowan.com/redirect ... o=lastpost#lastpost

辛苦测试了一下午 觉得需要鼓励下的朋友顶下帖 谢谢了 :) 只是希望给discuz带去更多的东西 大家有好东东记得分享 分享才能进步 废话少说 开始了

安装前请一定备份数据库

步骤原帖都有 为了省去你们的麻烦 我重新copy一遍

升级数据库
  1. CREATE TABLE `cdb_digg` (
  2. `tid` MEDIUMINT( 8 ) NOT NULL ,
  3. `uid` MEDIUMINT( 8 ) NOT NULL ,
  4. `time` INT( 10 ) NOT NULL
  5. ) ENGINE = MYISAM ;
复制代码
  1. ALTER TABLE `cdb_threads` ADD `digg` MEDIUMINT( 8 ) NOT NULL ;
  2. ALTER TABLE `cdb_threads` ADD `digg_d` MEDIUMINT( 8 ) NOT NULL ;
  3. ALTER TABLE `cdb_threads` ADD `digg_w` MEDIUMINT( 8 ) NOT NULL ;
  4. ALTER TABLE `cdb_threads` ADD `digg_m` MEDIUMINT( 8 ) NOT NULL ;
复制代码
修改模板
header.htm

查找
  1. <script type="text/javascript" src="include/javascript/ajax.js"></script>
复制代码
在下面添加
  1. <script type="text/javascript" src="include/javascript/easydigg.js"></script>
复制代码
css.htm

末尾添加
  1. /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Easy Digg ~~~~ */
  2.         .digBtn{ display:block;width:50px;height:65px;text-align:center;background: url(http://[color=Red]您的域名[/color]/digg_bg.gif) no-repeat center 0;float: right;margin: 10px;cursor: hand;}
  3.         .digBtn strong{ color:#fff;font-family:Georgia;font-size:16px;padding:3px 1px 0 0;height:45px;clear:both;display:block;text-shadow:1px 1px 3px #fff;font-weight: bold;}
  4.         .digBtn a {text-decoration:none !important;}
  5.         .digBtn a span{color:#f60;border-bottom:1px solid #f60;}                .shareButton {background:url(http://[color=Red]您的域名[/color]/share.gif的地址) no-repeat 5px 0;height:65px;width:80px;float: right;margin: 10px;}
  6.                 .shareButton a {display:block;width:65px;padding-top:50px;margin-left:20px;color:#000;text-decoration:none;}
  7.                 .shareButton a:hover{color:#000;text-decoration:underline;}
复制代码
修改完记得更新css缓存

viewthread.htm

查找
  1. <div id="ad_thread3_$post[count]"></div><div id="ad_thread4_$post[count]"></div>
复制代码
后面添加:
  1. <!--{if $post[number] == 1}-->
  2.                                                                                            <div class="shareButton" id="share" style="display:none"><a href="misc.php?action=emailfriend&tid=$tid" id="emailfriend" onclick="ajaxmenu(event, this.id, 9000000, null, 0)">分享给好友</a></div>
  3.                                                                                                 <div id="digg" class="digBtn"><div onclick='easydigg("action=diggit&tid=$tid", $thread[digg], "digg", "$tid")'><strong>$thread[digg]</strong><span>顶它</span></div></div>        
  4.                                                                                                 
  5.                                                <!--{/if}-->
复制代码
include/moderation.inc.php
修改此文件是为了删除文章时同时删除该贴的digg记录
查找
  1. 'favorites', 'mythreads', 'myposts', 'subscriptions', 'typeoptionvars'
复制代码
后面添加
  1. , 'digg'
复制代码
后台添加三个计划任务,执行时间如下
easydigg_daily.inc.php    执行时间:每日零点
easydigg_weekly.inc.php   执行时间:每周日零点
easydigg_monthly.inc.php  执行时间:每月一日零点


如果只想在某些版块显示可以将修改模板中的语句
查找
  1. <!--{if $post[number] == 1}-->
复制代码
替换为
  1. <!--{if $post[number] == 1 && in_array($fid, array(1,2,3))}-->
复制代码
其中'1,2,3'为要显示的fid

将附件直接上传就可以了。

[ 本帖最后由 litaowan 于 2007-10-20 18:14 编辑 ]

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x

评分

1

查看全部评分

jiayiyangzhu 发表于 2007-10-20 16:32:08 | 显示全部楼层
SF+顶了~~非常需要!
回复

使用道具 举报

yhthw 发表于 2007-10-20 16:45:40 | 显示全部楼层
地板,准备装了。哈哈
回复

使用道具 举报

wuminliu 发表于 2007-10-20 16:55:27 | 显示全部楼层
回复

使用道具 举报

Seika 发表于 2007-10-20 17:08:17 | 显示全部楼层
:) :) :)
回复

使用道具 举报

Seika 发表于 2007-10-20 17:08:39 | 显示全部楼层
:) :) :)
回复

使用道具 举报

 楼主| litaowan 发表于 2007-10-20 17:15:46 | 显示全部楼层

装好的回来顶下啊

装好的回来顶下啊
回复

使用道具 举报

362324 发表于 2007-10-20 17:23:12 | 显示全部楼层
有没有演示呀,
留个位置
回复

使用道具 举报

yhthw 发表于 2007-10-20 17:27:10 | 显示全部楼层
刚刚装好了,谢谢楼主了。

演示:http://www.yhthw.com/bbs/viewthread.php?tid=933&extra=page%3D1

PS:楼主的演示MS打得开了。

[ 本帖最后由 yhthw 于 2007-10-20 19:36 编辑 ]
回复

使用道具 举报

 楼主| litaowan 发表于 2007-10-20 17:31:47 | 显示全部楼层

坏我名声 怎么打不开了

原帖由 yhthw 于 2007-10-20 17:27 发表
刚刚装好了,谢谢楼主了。

演示:http://www.yhthw.com/bbs/viewthr ... &extra=page%3D1

PS:楼主的演示MS打不开。

坏我名声 怎么打不开了》?!
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-16 08:10 , Processed in 0.049151 second(s), 6 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

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