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

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

【参赛作品】门户类--魅力潮流[MAXJAY参赛第1作][已发布]

[复制链接]
MAXJAY 发表于 2006-5-22 08:57:11 | 显示全部楼层 |阅读模式
使用前请认真阅读下面文字

===============================================================================



    使用前说明

    1.此风格在使用时请保留底部的"DESIGN BY MAXJAY"无连接文字

    2.此模版含横排版块,使用横排版块时请在index.htm查找

    {eval $incompact=array(0,2,6,11,16,21);}

    把里面的0,2,6,11,16,21换成你想横排版块的分类的gid

    PS:是gid,不是fid

    3.此风格还有一定的不足,请大家回帖告之


    4.首页图片新闻自动更新随后会放出PHP的修改方法,在此前请手动更新,如果你想去掉,请看145楼


    更多修改方案请查看15页


===============================================================================

安装方法

1. 打开后台导入文件\discuz_style_MAXJAY_FREE.txt,把里面所有内容复制出来,到"论坛 -> 系统设置 -> 界面风格 -> 界面风格" 内,在 “导入界面方案”内粘帖上复制出来的内容,然后点 “提交”

2. 上传images和templates文件夹到论坛根目录

3. 按index.php修改方法和forumdisplay.php修改方法来修改

4. 到 论坛 -> 系统设置 -> Discuz!工具 -> 更新缓存


===============================================================================


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. //---------------hack Meminfo start
  2. if(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "MSIE 6.0")) {
  3.                 $visitor_browser = "Internet Explorer 6.0";
  4.         } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "MSIE 5.5")) {
  5.                 $visitor_browser = "Internet Explorer 5.5";
  6.         } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "MSIE 5.0")) {
  7.                 $visitor_browser = "Internet Explorer 5.0";
  8.         } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "MSIE 4.01")) {
  9.                 $visitor_browser = "Internet Explorer 4.01";
  10.         } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "NetCaptor")) {
  11.                 $visitor_browser = "NetCaptor";
  12.         } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "Netscape")) {
  13.                 $visitor_browser = "Netscape";
  14.         } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "Lynx")) {
  15.                 $visitor_browser = "Lynx";
  16.         } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "Opera")) {
  17.                 $visitor_browser = "Opera";
  18.         } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "Konqueror")) {
  19.                 $visitor_browser = "Konqueror";
  20.         } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "Mozilla")) {
  21.                 $visitor_browser = "Mozilla";
  22.         } else {
  23.                 $visitor_browser = "其它";
  24.         }
  25. //上面的是浏览器//
  26.         if(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "NT 5.1")) {
  27.                 $visitor_os = "Windows XP";
  28.         }elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "NT 5.2")) {
  29.                 $visitor_os = "Windows Server 2003";
  30.         }elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "NT 5")) {
  31.                 $visitor_os = "Windows 2000";
  32.         } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "4.9")) {
  33.                 $visitor_os = "Windows ME";
  34.         } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "NT 4")) {
  35.                 $visitor_os = "Windows NT 4.0";
  36.         } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "98")) {
  37.                 $visitor_os = "Windows 98";
  38.         } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "95")) {
  39.                 $visitor_os = "Windows 95";
  40.         } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "Mac")) {
  41.                 $visitor_os = "Mac";
  42.         } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "Linux")) {
  43.                 $visitor_os = "Linux";
  44.         } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "Unix")) {
  45.                 $visitor_os = "Unix";
  46.         } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "FreeBSD")) {
  47.                 $visitor_os = "FreeBSD";
  48.         } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "SunOS")) {
  49.                 $visitor_os = "SunOS";
  50.         } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "BeOS")) {
  51.                 $visitor_os = "BeOS";
  52.         } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "OS/2")) {
  53.                 $visitor_os = "OS/2";
  54.         } elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "PC")) {
  55.                 $visitor_os = "Macintosh";
  56.         }elseif(strpos($HTTP_SERVER_VARS[HTTP_USER_AGENT], "AIX")) {
  57.                 $visitor_os = "AIX";
  58.         } else {
  59.                 $visitor_os = "其他";
  60.         }
  61.         $mem_home = convertip($onlineip, $datadir = "./");
  62. //info//
  63. $colorarray = array('', 'red', 'orange', 'yellow', 'green', 'cyan', 'blue', 'purple', 'gray');
  64. //新贴//
  65. $hack_cut_str =16; //修改标题显示字数
  66. $hack_cut_strauthor = 9;
  67. $new_post_threadlist = array();
  68. $nthread = array();
  69. $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, 10");
  70. while($nthread = $db->fetch_array($query)) {
  71.         $nthread['forumname'] = $nthread['name'];
  72.         $nthread['view_subject'] = cutstr($nthread['subject'],$hack_cut_str);
  73.         $nthread['view_author'] = cutstr($nthread['author'],$hack_cut_strauthor);
  74.         $nthread['date']= gmdate("$dateformat $timeformat", $nthread['dateline'] + $timeoffset * 3600);
  75.         $nthread['lastreplytime']= gmdate("$dateformat $timeformat", $nthread[lastpost] + ($timeoffset * 3600));
  76.         if($nthread['highlight']) {
  77.                 $string = sprintf('%02d', $nthread['highlight']);
  78.                 $stylestr = sprintf('%03b', $string[0]);
  79.                 $nthread['highlight'] = 'style="';
  80.                 $nthread['highlight'] .= $stylestr[0] ? 'font-weight: bold;' : '';
  81.                 $nthread['highlight'] .= $stylestr[1] ? 'font-style: italic;' : '';
  82.                 $nthread['highlight'] .= $stylestr[2] ? 'text-decoration: underline;' : '';
  83.                 $nthread['highlight'] .= $string[1] ? 'color: '.$colorarray[$string[1]] : '';
  84.                 $nthread['highlight'] .= '"';
  85.         } else {
  86.                 $nthread['highlight'] = '';
  87.         }
  88.         $new_post_threadlist[] = $nthread;
  89. }
  90. //新贴//
  91. //新回覆
  92. $hack_cut_str = 16; //修改标题显示字数
  93. $hack_cut_strauthor = 9;
  94. $new_reply_threadlist = array();
  95. $rthread = array();
  96. $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.lastpost DESC LIMIT 0, 10");
  97. while($rthread = $db->fetch_array($query)) {
  98.         $rthread['forumname'] = $rthread['name'];
  99.         $rthread['view_subject'] = cutstr($rthread['subject'],$hack_cut_str);
  100.         $rthread['view_lastposter'] = cutstr($rthread['lastposter'],$hack_cut_strauthor);
  101. $rthread['date']= gmdate("$dateformat $timeformat", $rthread['dateline'] + $timeoffset * 3600);
  102.         $rthread['lastreplytime']= gmdate("$dateformat $timeformat", $rthread[lastpost] + ($timeoffset * 3600));
  103.         if($rthread['highlight']) {
  104.                 $string = sprintf('%02d', $rthread['highlight']);
  105.                 $stylestr = sprintf('%03b', $string[0]);
  106.                 $rthread['highlight'] = 'style="';
  107.                 $rthread['highlight'] .= $stylestr[0] ? 'font-weight: bold;' : '';
  108.                 $rthread['highlight'] .= $stylestr[1] ? 'font-style: italic;' : '';
  109.                 $rthread['highlight'] .= $stylestr[2] ? 'text-decoration: underline;' : '';
  110.                 $rthread['highlight'] .= $string[1] ? 'color: '.$colorarray[$string[1]] : '';
  111.                 $rthread['highlight'] .= '"';
  112.         } else {
  113.                 $rthread['highlight'] = '';
  114.         }
  115.         $new_reply_threadlist[] = $rthread;
  116. }
  117. //回覆//
复制代码


查找
  1. $topiclist = $qihoo_links['topics'];
复制代码

下面添加
  1. //社区公告
  2. if($_DCACHE['announcements']){
  3.        foreach ($_DCACHE['announcements'] as $notice_B) {
  4.               $notice.="  <img src='images/maxjay_free_meili/dot.gif' border='0' align='absmiddle'> <a href='announcement.php?id=$notice_B[id]#$notice_B[id]'>".cutstr($notice_B[subject], 30)."</a><br />";
  5.        }
  6. }else{
  7.        $notice='最近没有论坛公告';
  8. }
复制代码



forumdisplay.php修改方法

查找
  1. $discuz_action = 2;
复制代码

下面添加
  1. //论坛推荐
  2. $boardhitthreads = '';
  3. $query = $db->query("SELECT tid,subject,lastpost FROM cdb_threads where fid='$fid' ORDER BY views DESC LIMIT 0, 10");
  4. while($thread = $db->fetch_array($query)) {
  5.         $thread[subject] = cutstr($thread[subject], 22);
  6.         $boardhitthreads.="<DIV>  ·<a href='viewthread.php?tid=$thread[tid]'>$thread[subject]</A></DIV>";
  7. }
复制代码

[ 本帖最后由 MAXJAY 于 2006-7-28 09:49 编辑 ]

本帖子中包含更多资源

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

x
0315 发表于 2006-5-22 09:05:33 | 显示全部楼层
这个要支持一下
回复

使用道具 举报

aiju33 发表于 2006-5-22 09:18:51 | 显示全部楼层
原帖由 0315 于 2006-5-22 09:05 发表
这个要支持一下

很不错啊
回复

使用道具 举报

aiju33 发表于 2006-5-22 09:20:26 | 显示全部楼层
原帖由 0315 于 2006-5-22 09:05 发表
这个要支持一下

每次都抢我SF啊
回复

使用道具 举报

苦涩咖啡 发表于 2006-5-22 09:24:13 | 显示全部楼层
整体不错,除了颜色像韩国化外。
回复

使用道具 举报

 楼主| MAXJAY 发表于 2006-5-22 09:25:47 | 显示全部楼层
原帖由 苦涩咖啡 于 2006-5-22 09:24 发表
整体不错,除了颜色像韩国化外。

你也真快
回复

使用道具 举报

Magic.factory 发表于 2006-5-22 09:26:21 | 显示全部楼层
哈哈。韩化作品。。。
回复

使用道具 举报

AD位 发表于 2006-5-22 09:35:59 | 显示全部楼层

如果提供完全版就支持

:
回复

使用道具 举报

九天 发表于 2006-5-22 09:54:40 | 显示全部楼层
呵~这个不错~~支持个
回复

使用道具 举报

0038 发表于 2006-5-22 10:11:30 | 显示全部楼层
支持中。。。。
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-15 10:44 , Processed in 0.043001 second(s), 4 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

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