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

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

最完美的---首页六格(图+最新主题+最新回复+本周热门+随即精华+24小时发帖排名)

[复制链接]
2008909 发表于 2008-12-17 17:45:53 | 显示全部楼层
都不知道在什么地方搞金币
回复

使用道具 举报

dt297i 发表于 2008-12-19 00:17:36 | 显示全部楼层
支持支持
回复

使用道具 举报

jiansanshao 发表于 2009-1-3 17:15:51 | 显示全部楼层
没有名言与天气的啊…………
回复

使用道具 举报

mahe1029 发表于 2009-1-4 10:32:44 | 显示全部楼层
支持,支持~~~~~~我喜欢这样的风格插件!!
回复

使用道具 举报

4425 发表于 2009-1-4 14:00:15 | 显示全部楼层
楼主的有点问题。
大家可以看看我的六格 http://www.hbcunguan.com
Discuz!6.1.0 首页六格 演示网站:http://www.hbcunguan.com
数据库升级:无

修改模板:1个

修改PHP:1个

加入文件: 两个图片一个FLASH(附件2&1)

修改文件:
         index.php
         templates/你使用模板目录下/discuz.htm

  templates/你使用模板目录下/discuz.htm——这个很重要。找准你的风格!默认风格是:templates/default/discuz.htm

详细安装步骤:

第一步:上传相关文件:

包含文件:

pic.php         请上传至论坛根目录
images文件夹    请将目录下的三个文件(两个图片一个FLASH)上传至论坛images目录下

第二步:修改index.php(修改前请先做好备份,以防万一)

查找
$rsshead = $rssstatus

在其上加入如下代码:
复制内容到剪贴板
代码:
//----首页六格代码开始
$colorarray = array('', 'red', 'orange', 'yellow', 'green', 'cyan', 'blue', 'purple', 'gray');
//新贴
$hack_cut_str = 100; //标题字数
$hack_cut_strauthor = 9;
$new_post_threadlist = array();
$nthread = array();
$query = $db->query("SELECT t.*, f.name FROM {$tablepre}threads t, {$tablepre}forums f WHERE t.fid<>'$fid' AND f.fid=t.fid AND f.fid not in (0) AND t.displayorder not in (-1,-2) ORDER BY t.dateline DESC LIMIT 0, 10");
while($nthread = $db->fetch_array($query)) {
        $nthread['forumname'] = ereg_replace('<[^>]*>','',$nthread['name']);
        $nthread['view_subject'] = cutstr($nthread['subject'],$hack_cut_str);
        $nthread['view_author'] = cutstr($nthread['author'],$hack_cut_strauthor);
        $nthread['date']= gmdate("$dateformat $timeformat", $nthread['dateline'] + $timeoffset * 3600);
        $nthread['lastreplytime']= gmdate("$dateformat $timeformat", $nthread[lastpost] + ($timeoffset * 3600));
        if($nthread['highlight']) {
                $string = sprintf('%02d', $nthread['highlight']);
                $stylestr = sprintf('%03b', $string[0]);
                $nthread['highlight'] = 'style="';
                $nthread['highlight'] .= $stylestr[0] ? 'font-weight: bold;' : '';
                $nthread['highlight'] .= $stylestr[1] ? 'font-style: italic;' : '';
                $nthread['highlight'] .= $stylestr[2] ? 'text-decoration: underline;' : '';
                $nthread['highlight'] .= $string[1] ? 'color: '.$colorarray[$string[1]] : '';
                $nthread['highlight'] .= '"';
        } else {
                $nthread['highlight'] = '';
        }
        $new_post_threadlist[] = $nthread;
}

//新回复
$hack_cut_str = 100; //标题字数
$hack_cut_strauthor = 9;
$new_reply_threadlist = array();
$rthread = array();
$query = $db->query("SELECT t.*, f.name FROM {$tablepre}threads t, {$tablepre}forums f WHERE t.fid<>'$fid' AND f.fid=t.fid  AND t.closed NOT LIKE 'moved|%' AND t.replies !=0 AND f.fid not in (0) AND t.displayorder not in (-1,-2) ORDER BY t.lastpost DESC LIMIT 0, 10");
while($rthread = $db->fetch_array($query)) {
        $rthread['forumname'] = ereg_replace('<[^>]*>','',$rthread['name']);
        $rthread['view_subject'] = cutstr($rthread['subject'],$hack_cut_str);
        $rthread['view_lastposter'] = cutstr($rthread['lastposter'],$hack_cut_strauthor);
                $rthread['date']= gmdate("$dateformat $timeformat", $rthread['dateline'] + $timeoffset * 3600);
        $rthread['lastreplytime']= gmdate("$dateformat $timeformat", $rthread[lastpost] + ($timeoffset * 3600));
        if($rthread['highlight']) {
                $string = sprintf('%02d', $rthread['highlight']);
                $stylestr = sprintf('%03b', $string[0]);
                $rthread['highlight'] = 'style="';
                $rthread['highlight'] .= $stylestr[0] ? 'font-weight: bold;' : '';
                $rthread['highlight'] .= $stylestr[1] ? 'font-style: italic;' : '';
                $rthread['highlight'] .= $stylestr[2] ? 'text-decoration: underline;' : '';
                $rthread['highlight'] .= $string[1] ? 'color: '.$colorarray[$string[1]] : '';
                $rthread['highlight'] .= '"';
        } else {
                $rthread['highlight'] = '';
        }
        $new_reply_threadlist[] = $rthread;
}

//热帖
$hack_cut_str = 100; //标题字数
$hack_cut_strauthor = 9;
$new_hot_threadlist = array();
$mthread = array();
$ctime=$timestamp-3600*24*7;//最后7是天数为本周  
$query = $db->query("SELECT t.*, f.name FROM {$tablepre}threads t, {$tablepre}forums f WHERE t.fid<>'$fid' AND f.fid=t.fid  AND t.closed NOT LIKE 'moved|%' AND t.replies !=0 AND t.dateline>$ctime AND f.fid not in (0) AND t.displayorder not in (-1,-2) ORDER BY t.replies DESC LIMIT 0, 10");
while($mthread = $db->fetch_array($query)) {
        $mthread['forumname'] = ereg_replace('<[^>]*>','',$mthread['name']);
        $mthread['view_subject'] = cutstr($mthread['subject'],$hack_cut_str);
        $mthread['view_lastposter'] = cutstr($mthread['lastposter'],$hack_cut_strauthor);
                $mthread['date']= gmdate("$dateformat $timeformat", $mthread['dateline'] + $timeoffset * 3600);
        $mthread['lastreplytime']= gmdate("$dateformat $timeformat", $mthread[lastpost] + ($timeoffset * 3600));
        if($mthread['highlight']) {
                $string = sprintf('%02d', $mthread['highlight']);
                $stylestr = sprintf('%03b', $string[0]);
                $mthread['highlight'] = 'style="';
                $mthread['highlight'] .= $stylestr[0] ? 'font-weight: bold;' : '';
                $mthread['highlight'] .= $stylestr[1] ? 'font-style: italic;' : '';
                $mthread['highlight'] .= $stylestr[2] ? 'text-decoration: underline;' : '';
                $mthread['highlight'] .= $string[1] ? 'color: '.$colorarray[$string[1]] : '';
                $mthread['highlight'] .= '"';
        } else {
                $mthread['highlight'] = '';
        }
        $new_hot_threadlist[] = $mthread;
}

//精华帖
$hack_cut_str = 100; //标题字数
$hack_cut_strauthor = 9;
$new_digest_threadlist = array();
$dthread = array();
$dtime=$timestamp-3600*24*30;//最后30是天数为本月  
$query = $db->query("SELECT t.*, f.name FROM {$tablepre}threads t, {$tablepre}forums f WHERE t.fid<>'$fid' AND f.fid=t.fid  AND t.closed NOT LIKE 'moved|%' AND t.replies !=0 AND t.dateline>$dtime AND t.digest in (1,2,3) AND f.fid not in (0) AND t.displayorder not in (-1,-2) ORDER BY t.replies DESC LIMIT 0, 10");
while($dthread = $db->fetch_array($query)) {
        $dthread['forumname'] = ereg_replace('<[^>]*>','',$dthread['name']);
        $dthread['view_subject'] = cutstr($dthread['subject'],$hack_cut_str);
        $dthread['view_lastposter'] = cutstr($dthread['lastposter'],$hack_cut_strauthor);
                $dthread['date']= gmdate("$dateformat $timeformat", $dthread['dateline'] + $timeoffset * 3600);
        $dthread['lastreplytime']= gmdate("$dateformat $timeformat", $dthread[lastpost] + ($timeoffset * 3600));
        if($dthread['highlight']) {
                $string = sprintf('%02d', $dthread['highlight']);
                $stylestr = sprintf('%03b', $string[0]);
                $dthread['highlight'] = 'style="';
                $dthread['highlight'] .= $stylestr[0] ? 'font-weight: bold;' : '';
                $dthread['highlight'] .= $stylestr[1] ? 'font-style: italic;' : '';
                $dthread['highlight'] .= $stylestr[2] ? 'text-decoration: underline;' : '';
                $dthread['highlight'] .= $string[1] ? 'color: '.$colorarray[$string[1]] : '';
                $dthread['highlight'] .= '"';
        } else {
                $dthread['highlight'] = '';
        }
        $new_digest_threadlist[] = $dthread;
}

//发帖排行
$today = array();
$query = $db->query("SELECT uid, username, posts FROM {$tablepre}members ORDER BY posts DESC LIMIT 10");
while($variable = $db->fetch_array($query)) {
        $today[] = array('uid'=>$variable['uid'], 'username'=>$variable['username'], 'posts'=>$variable[posts]);
}
//----首页六格代码结束
第三步:修改templates/你使用模板目录下/discuz.htm文件:

找到:
<div id="ad_text"></div>

再其下加入如下代码:
复制内容到剪贴板
代码:
<!-- 首页六格代码开始 -->
<script language="javascript">
function view(a) {
document.getElementById('top1').style.display='none';
document.getElementById('top2').style.display='none';
document.getElementById('top3').style.display='none';
document.getElementById('top4').style.display='none';

document.getElementById('top'+a).style.display='block';

document.getElementById('tab1').className='';
document.getElementById('tab2').className='';
document.getElementById('tab3').className='';
document.getElementById('tab4').className='';

document.getElementById('tab'+a).className='current';
}
</script>
<div class="mainbox">
        <span class="headactions">
        <!--{if $cat['moderators']}-->{lang forum_category_modedby}: $cat[moderators]<!--{/if}-->
                <img id="category_toplist_img" src="{IMGDIR}/collapsed_no.gif" title="{lang spread}" alt="{lang spread}" onclick="toggle_collapse('category_toplist');" />
        </span>
        <span class="headactions"></span>
        <h3>湖北大学生村官论坛 | www.hbcunguan.com —— 尽力打造品牌“村官”论坛!</h3>
        <table cellspacing="0" cellpadding="0"  id="category_toplist" summary="category$cat[fid]" cellspacing="0" cellpadding="0" style="$collapse['category_'.$cat[fid]]">
                <tr>
                        <td width="25%" align="center"  style="padding: 5px 0px 0px 5px">
                                <div class="mainbox">
                                        <ul class="tabs">
                                                <li class="current"><span style="padding:0 5px;">社区图片</span></li>
                                        </ul>
                                        <table cellspacing="0" cellpadding="0" >
                                                <tr>
                                                        <td style="padding:1px; border-top:0px"><span style="margin-top:-13"><script type="text/javascript" src="pic.php"></script></span></td>
                                                </tr>
                                        </table>
                                </div>
                        </td>
                           <td style="padding: 5px 0px 0px 5px">
                                <div class="mainbox">
                                        <ul class="tabs">
                                                <li id="tab1" class="current" ><span style="padding:0 8px;" onMouseOver="javascript:view(1);">最新主题</span></li>
                                                <li id="tab2" class="" ><span style="padding:0 8px;" onMouseOver="javascript:view(2);">最新回复</span></li>
                                                <li id="tab3" class="" ><span style="padding:0 8px;" onMouseOver="javascript:view(3);">本周热门</span></li>
                                                <li id="tab4" class="" ><span style="padding:0 8px;" onMouseOver="javascript:view(4);">随机精华</span></li>
                                        </ul>
                                <table border="0" cellpadding="0" cellspacing="0" width="100%">
                                        <tr valign="top">
                                                <td width="24" style="padding:0;border-top:0px;"><img src="images/hexad/list.gif" border="0" /></td>
                                                <td background="images/hexad/listbg.gif" style="line-height:20px;padding:0;border-top:0px;background-repeat: repeat" width="100%">
                                                <div id="top1" style="display:block;">
                                                <!--{loop $new_post_threadlist $nthread}-->
                                                <!--{if $nthread[replies]}-->
                                                        <div style="overflow: hidden;height: 20px;width: 100%;"><em style="float:right; padding-top:2px;"><a href="space.php?uid=$nthread[authorid]" title="查看$nthread[author]的个人空间" target="_blank">$nthread[author]</a></em><span style="float:left;"><a href="viewthread.php?tid=$nthread[tid]" $nthread['highlight'] title='最新主题 {LF}所在论坛: $nthread[forumname]{LF}主题标题: {echo strip_tags($nthread[subject])} {LF}主题作者: $nthread[author]{LF}发表时间: $nthread[date]{LF}浏览次数: $nthread[views] 次 {LF}回复次数: $nthread[replies] 次{LF}最后回复: $nthread[lastreplytime]{LF}{lang lastpost}: $nthread[lastposter]'>$nthread[view_subject]</a></span></div><div style="clear:both;"></div>
                                                <!--{else}-->
                                                        <div style="overflow: hidden;height: 20px;width: 100%;"><em style="float:right; padding-top:2px;"><a href="space.php?uid=$nthread[authorid]" title="查看$nthread[author]的个人空间" target="_blank">$nthread[author]</a></em><span style="float:left;"><a href="viewthread.php?tid=$nthread[tid]" $nthread['highlight'] title='最新主题 {LF}所在论坛: $nthread[forumname]{LF}主题标题: {echo strip_tags($nthread[subject])} {LF}主题作者: $nthread[author]{LF}发表时间: $nthread[date]{LF}浏览次数: $nthread[views] 次 {LF}回复次数: $nthread[replies] 次{LF}最后回复: 暂时没有回复'>$nthread[view_subject]</a></span></div><div style="clear:both;"></div>
                                                <!--{/if}-->
                                                <!--{/loop}-->
                                                </div>
                                                <div id="top2" style="display:none;">
                                                <!--{loop $new_reply_threadlist $rthread}-->
                                                <div style="overflow: hidden;height: 20px;width: 100%;"><em style="float:right; padding-top:2px;"><a href="space.php?uid=$rthread[lastposterid]" title="查看$rthread[lastposter]的个人空间" target="_blank">$rthread[lastposter]</a></em><span style="float:left;"><a href="redirect.php?tid=$rthread[tid]&goto=lastpost#lastpost" $rthread['highlight'] title='最新回复 {LF}所在论坛: $rthread[forumname]{LF}主题标题: {echo strip_tags($rthread[subject])}{LF}主题作者: $rthread[author]{LF}发表时间: $rthread[date]{LF}浏览次数: $rthread[views] 次{LF}回复次数: $rthread[replies] 次{LF}最后回复: $rthread[lastreplytime]{LF}{lang lastpost}: $rthread[lastposter]'>$rthread[view_subject]</a></span></div><div style="clear:both;"></div>
                                                <!--{/loop}-->
                                                </div>
                                                <div id="top3" style="display:none;">
                                                <!--{loop $new_hot_threadlist $mthread}-->
                                                <div style="overflow: hidden;height: 20px;width: 100%;"><em style="float:right; padding-top:2px;"><a href="space.php?uid=$mthread[authorid]" title="查看$mthread[author]的个人空间" target="_blank">$mthread[author]</a></em><span style="float:left;"><a href="viewthread.php?tid=$mthread[tid]" $mthread['highlight'] title='本周热门 {LF}所在论坛: $mthread[forumname]{LF}主题标题: {echo strip_tags($mthread[subject])}{LF}主题作者: $mthread[author]{LF}发表时间: $mthread[date]{LF}浏览次数: $mthread[views] 次{LF}回复次数: $mthread[replies] 次{LF}最后回复: $mthread[lastreplytime]{LF}{lang lastpost}: $mthread[lastposter]'>$mthread[view_subject]</a></span></div><div style="clear:both;"></div>
                                                <!--{/loop}-->
                                                </div>
                                                <div id="top4" style="display:none;">
                                                <!--{loop $new_digest_threadlist $dthread}-->
                                                <div style="overflow: hidden;height: 20px;width: 100%;"><em style="float:right; padding-top:2px;"><a href="space.php?uid=$dthread[authorid]" title="查看$dthread[author]的个人空间" target="_blank">$dthread[author]</a></em><span style="float:left;"><a href="viewthread.php?tid=$dthread[tid]" $dthread['highlight'] title='随机精华 {LF}所在论坛: $dthread[forumname]{LF}主题标题: $dthread[subject]{LF}主题作者: $dthread[author]{LF}发表时间: $dthread[date]{LF}浏览次数: $dthread[views] 次{LF}回复次数: $dthread[replies] 次{LF}最后回复: $dthread[lastreplytime]{LF}{lang lastpost}: $dthread[lastposter]'>$dthread[view_subject]</a></span></div><div style="clear:both;"></div>
                                                <!--{/loop}-->
                                                </div>
                                    </table>
                                </div>
                        </td>
                        <td width="20%" style="padding: 5px 5px 0px 5px">
                                <div class="mainbox">
                                        <ul class="tabs">
                                                <li class="current"><span style="padding:0 5px;">论坛发帖总排行</span></li>
                                        </ul>
                                <table border="0" cellpadding="0" cellspacing="0" width="100%">
                                        <tr valign="top">
                                                <td width="24" style="padding:0;border-top:0px;"><img src="images/hexad/list.gif" border="0" /></td>
                                                <td background="images/hexad/listbg.gif" style="line-height:20px;padding:0;border-top:0px;background-repeat: repeat" width="100%">
                                                                <div>
                                                <!--{loop $today $member}-->
                                                        <div style="overflow: hidden;height: 20px;width: 100%;"><em style="float:right; padding-top:2px;">$member[posts]</em><a href="space.php?uid=$member[uid]" title="查看$member[username]的个人空间">$member[username]</a></div>
                                                <!--{/loop}-->
                                                                </div>
                                                        </td>
                                             </tr>
                                    </table>
                            </div>
                        </td>
                </tr>
        </table>
</div>
<!-- 首页六格代码结束 -->
更新缓存!安装成功!
回复

使用道具 举报

龍城冭孒 发表于 2009-1-4 15:12:37 | 显示全部楼层
有支持 5d6d的 吗 ????
回复

使用道具 举报

伴爱飞翔 发表于 2009-1-5 13:52:14 | 显示全部楼层
支持支持
回复

使用道具 举报

chinawangjun 发表于 2009-1-5 14:21:07 | 显示全部楼层
呵呵,不错,正需要,谢了啊
回复

使用道具 举报

shahaohaosha 发表于 2009-1-7 20:56:48 | 显示全部楼层
我没钱买。。但想要啊
回复

使用道具 举报

bdzhe 发表于 2009-1-9 03:31:39 | 显示全部楼层
包里没有pic.php
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-22 08:20 , Processed in 0.034453 second(s), 6 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

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