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

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

仿制作的┇┇┇《日光海岸修改版》┇┇ FOR Discuz!5.5.0

[复制链接]
kuboy 发表于 2007-5-25 12:57:46 | 显示全部楼层 |阅读模式
收录,转载,请注明版权所有!!!!未注明者,后果自负!




改头部连接在header.htm,还有,此风格对广告无其他影响.....如果出问题请回复!

关于增加首页的新帖和热帖方法在2楼

此风格为仿制,风格.地址演示http://www.pulage.com/bbs/index.php?styleid=7!!!!!!!自己看图片吧!3楼是别人的演示!

相关信息:
风格名称:无聊风格
发布时间:2007年5月25日
制作时间:2007年5月24日
编码类型:  GBK

适用版本:  Discuz! 5.5.0 正式版
作品类型: 仿制制作

原创作者: Kuboy (ζ遺忘の嗳Э QQ:254089249)
演示:
本地安装,暂时没有
注意:和FF存在框架错位
演示图:






————————压缩包介绍————————

   /upload    ——风格模版文件及图片
   discuz_style_无聊风格.txt    ——风格配色导入文件
   index.php -----修改好的文件
   说明.txt


添加个首页新帖和热帖的数据库查询,如果您不会下面的操作,还有未修改过INDEX.PHP,请使用压缩包里的覆盖,就可以了!

1、修改index.php

找到:
  1. require_once DISCUZ_ROOT.'./include/forum.func.php';
复制代码
下面添加:
  1. require_once DISCUZ_ROOT.'./include/misc.func.php';
复制代码
找到:
  1. $newthreads = round(($timestamp - $lastvisit + 600) / 1000) * 1000;
复制代码
下面添加:
  1. $colorarray = array('', 'red', 'orange', 'yellow', 'green', 'cyan', 'blue', 'purple', 'gray');
  2. //热帖
  3. $hack_cut_str = 32; //修改标题显示字数
  4. $hack_cut_strauthor = 9;
  5. $new_hot_threadlist = array();
  6. $mthread = array();
  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 ORDER BY t.views DESC LIMIT 0, 5");
  8. while($mthread = $db->fetch_array($query)) {
  9.         $mthread['forumname'] = $mthread['name'];
  10.         $mthread['view_subject'] = cutstr($mthread['subject'],$hack_cut_str);
  11.         $mthread['view_lastposter'] = cutstr($mthread['lastposter'],$hack_cut_strauthor);
  12. $mthread['date']= gmdate("$dateformat $timeformat", $mthread['dateline'] + $timeoffset * 3600);
  13.         $mthread['lastreplytime']= gmdate("$dateformat $timeformat", $mthread[lastpost] + ($timeoffset * 3600));
  14.         if($mthread['highlight']) {
  15.                 $string = sprintf('%02d', $mthread['highlight']);
  16.                 $stylestr = sprintf('%03b', $string[0]);
  17.                 $mthread['highlight'] = 'style="';
  18.                 $mthread['highlight'] .= $stylestr[0] ? 'font-weight: bold;' : '';
  19.                 $mthread['highlight'] .= $stylestr[1] ? 'font-style: italic;' : '';
  20.                 $mthread['highlight'] .= $stylestr[2] ? 'text-decoration: underline;' : '';
  21.                 $mthread['highlight'] .= $string[1] ? 'color: '.$colorarray[$string[1]] : '';
  22.                 $mthread['highlight'] .= '"';
  23.         } else {
  24.                 $mthread['highlight'] = '';
  25.         }
  26.         $new_hot_threadlist[] = $mthread;
  27. }
  28. //热帖//
  29. //新贴//
  30. $hack_cut_str =32; //修改标题显示字数
  31. $hack_cut_strauthor = 9;
  32. $new_post_threadlist = array();
  33. $nthread = array();
  34. $query = $db->query("SELECT t.*, f.name FROM {$tablepre}threads t, {$tablepre}forums f WHERE t.fid<>'$fid' AND f.fid=t.fid ORDER BY t.dateline DESC LIMIT 0, 5");
  35. while($nthread = $db->fetch_array($query)) {
  36.         $nthread['forumname'] = $nthread['name'];
  37.         $nthread['view_subject'] = cutstr($nthread['subject'],$hack_cut_str);
  38.         $nthread['view_author'] = cutstr($nthread['author'],$hack_cut_strauthor);
  39.         $nthread['date']= gmdate("$dateformat $timeformat", $nthread['dateline'] + $timeoffset * 3600);
  40.         $nthread['lastreplytime']= gmdate("$dateformat $timeformat", $nthread[lastpost] + ($timeoffset * 3600));
  41.         if($nthread['highlight']) {
  42.                 $string = sprintf('%02d', $nthread['highlight']);
  43.                 $stylestr = sprintf('%03b', $string[0]);
  44.                 $nthread['highlight'] = 'style="';
  45.                 $nthread['highlight'] .= $stylestr[0] ? 'font-weight: bold;' : '';
  46.                 $nthread['highlight'] .= $stylestr[1] ? 'font-style: italic;' : '';
  47.                 $nthread['highlight'] .= $stylestr[2] ? 'text-decoration: underline;' : '';
  48.                 $nthread['highlight'] .= $string[1] ? 'color: '.$colorarray[$string[1]] : '';
  49.                 $nthread['highlight'] .= '"';
  50.         } else {
  51.                 $nthread['highlight'] = '';
  52.         }
  53.         $new_post_threadlist[] = $nthread;
  54. }
  55. //新贴//
复制代码
2,上传文件images,templates,include,到论坛根目录!!!

3,后台导入discuz_style_无聊风格.txt

4,没拉,.................

[ 本帖最后由 kuboy 于 2007-7-14 18:29 编辑 ]
 楼主| kuboy 发表于 2007-5-25 12:58:02 | 显示全部楼层
占位编辑.........

关于增加新帖和热门帖的查询量,
请搜索:
dateline DESC LIMIT 0, 5");

其中的5的意思就是查询5条信息,

按自己的意思增加了!

[ 本帖最后由 kuboy 于 2007-5-28 16:57 编辑 ]
回复

使用道具 举报

 楼主| kuboy 发表于 2007-5-25 13:12:40 | 显示全部楼层
安装好的用户可以回复下自己的风格地址

一定要是风格的地址,不是别的

我将在3楼演示

26楼安装成功
http://www.de70.com/index.php?styleid=49&sid=o0SNjA

35楼安装成功
http://bbs.33zx.cn/?styleid=2

53楼安装成功
http://www.yuyou68.com/

[ 本帖最后由 kuboy 于 2007-5-28 16:59 编辑 ]
回复

使用道具 举报

 楼主| kuboy 发表于 2007-5-25 13:13:01 | 显示全部楼层
黄金广告位置....谁敢要?

[ 本帖最后由 kuboy 于 2007-5-25 13:20 编辑 ]
回复

使用道具 举报

stgood 发表于 2007-5-25 13:13:51 | 显示全部楼层
我要
回复

使用道具 举报

滚骨碌 发表于 2007-5-25 13:14:01 | 显示全部楼层
别别别…………还在研究安装方法呢………………这个方法没安装过……

[ 本帖最后由 滚骨碌 于 2007-5-25 15:28 编辑 ]
回复

使用道具 举报

Flash菲 发表于 2007-5-25 13:14:10 | 显示全部楼层
路过一次..俩次..三次 ......
回复

使用道具 举报

 楼主| kuboy 发表于 2007-5-25 13:14:40 | 显示全部楼层
晕,还有什么安装方法啊,就是添加个首也新帖和热帖的数据库查询
回复

使用道具 举报

inonce 发表于 2007-5-25 13:14:52 | 显示全部楼层
支持 ....
回复

使用道具 举报

反警 发表于 2007-5-25 13:15:30 | 显示全部楼层
日光海岸?
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-1 11:34 , Processed in 0.044899 second(s), 17 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

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