phpBB安装备忘

Discussion in 'Quantum and Mind' started by hylt, Feb 23, 2004.

  1. 1、Install 2.0.6 原版 + 语言包
    2、Install attach 2.3.9 ( pre-edited方式 ) + 语言包
    3、补丁
      http://www.phpbb.com/phpBB/viewtopic.php?t=161943
    4、管理设置
    5、templates/subSilver/index_body.tpl,去除unanswer、mark read and timezone、login box、statics and online、folder picture
     
  2. memberlist.php

    Code:
    $start = ( isset($HTTP_GET_VARS['start']) ) ? intval($HTTP_GET_VARS['start']) : 0;
    
    if ( isset($HTTP_GET_VARS['mode']) || isset($HTTP_POST_VARS['mode']) )
    {
    	$mode = ( isset($HTTP_POST_VARS['mode']) ) ? htmlspecialchars($HTTP_POST_VARS['mode']) : htmlspecialchars($HTTP_GET_VARS['mode']);
    }
    else
    {
    	$mode = 'joined';
    }
    
    if(isset($HTTP_POST_VARS['order']))
    {
    	$sort_order = ($HTTP_POST_VARS['order'] == 'ASC') ? 'ASC' : 'DESC';
    }
    else if(isset($HTTP_GET_VARS['order']))
    {
    	$sort_order = ($HTTP_GET_VARS['order'] == 'ASC') ? 'ASC' : 'DESC';
    }
    else
    {
    	$sort_order = 'ASC';
    }
    倒数第二行ASC改为DESC
    http://www.phpbb.com/phpBB/viewtopic.php?t=17560
     
  3. subSilver风格:三种字体全部加大一号。
     
  4. Code:
    /* The largest text used in the index page title and toptic title etc. */
    .maintitle	{
    	font-weight: bold; font-size: 22px; font-family: "{T_FONTFACE2}",{T_FONTFACE1};
    	text-decoration: none; line-height : 120%; color : {T_BODY_TEXT};
    }
    上面的22px改为18px
     
  5. /wwwroot/bbs/templates/subSilver/overall_header.tpl
    Code:
    /* The content of the posts (body of text) */
    .postbody { font-size : {T_FONTSIZE3}px; line-height: 18px}
    a.postlink:link	{ text-decoration: none; color : {T_BODY_LINK} }
    a.postlink:visited { text-decoration: none; color : {T_BODY_VLINK}; }
    a.postlink:hover { text-decoration: underline; color : {T_BODY_HLINK}}
    Replace with
    Code:
    /* The content of the posts (body of text) */
    .postbody { font-size : 14px; line-height: 168%}
    a.postlink:link	{ text-decoration: none; color : {T_BODY_LINK} }
    a.postlink:visited { text-decoration: none; color : {T_BODY_VLINK}; }
    a.postlink:hover { text-decoration: underline; color : {T_BODY_HLINK}}
    Referrence
    http://www.phpbb.com/phpBB/viewtopic.php?t=79872
     
  6. viewtopic_body.tpl
    Code:
    				<td colspan="2"><span class="postbody">{postrow.MESSAGE}</span>{postrow.ATTACHMENTS}<span class="postbody">{postrow.SIGNATURE}</span><span class="gensmall">{postrow.EDITED_MESSAGE}</span></td>
    
    Replace with
    Code:
    				<td colspan="2"><span class="postbody">{postrow.MESSAGE}</span>{postrow.ATTACHMENTS}<span class="postbody">{postrow.SIGNATURE}</span><span class="gensmall">{postrow.EDITED_MESSAGE}</span>
    
    </td>
    
     
  7. 在登录页面增加注册链接:
    Open login_body.tpl
    Code:
    		  <tr> 
    			<td colspan="2" align="center"></td>
    		  </tr>
    		  <tr>
    			<td colspan="2" align="center">[url="http://www.0-3.cn/bbs/profile.php?mode=register"]<font color=red>[b]新会员注册![/b]</font>[/url]</td> 
    		  </tr>
    
     
  8. 去除首页版块描述行
    OPEN
    templates/subSilver/index_body.tpl
    FIND
    Code:
    	<td class="row1" width="100%" height="50"><span class="forumlink"> [url="{catrow.forumrow.U_VIEWFORUM}"]{catrow.forumrow.FORUM_NAME}[/url]
    
    	  </span> <span class="genmed">{catrow.forumrow.FORUM_DESC}
    
    	  </span><span class="gensmall">{catrow.forumrow.L_MODERATOR} {catrow.forumrow.MODERATORS}</span></td>
    
    REPLACE WITH
    Code:
    	<td class="row1" width="100%" height="50"><span class="forumlink"> [url="{catrow.forumrow.U_VIEWFORUM}"]{catrow.forumrow.FORUM_NAME}[/url]
    
    	  </span> <span class="gensmall">{catrow.forumrow.L_MODERATOR} {catrow.forumrow.MODERATORS}</span></td>
    
     
  9. 改变论坛名称字体颜色:
    Open
    overall_header.tpl
    Find
    Code:
    /* The largest text used in the index page title and toptic title etc. */
    .maintitle	{
    	font-weight: bold; font-size: 22px; font-family: "{T_FONTFACE2}",{T_FONTFACE1};
    	text-decoration: none; line-height : 120%; color : {T_BODY_TEXT};
    }
    
    Replace with
    Code:
    /* The largest text used in the index page title and toptic title etc. */
    .maintitle	{
    	font-weight: bold; font-size: 22px; font-family: "{T_FONTFACE2}",{T_FONTFACE1};
    	text-decoration: none; line-height : 120%; color : #FFFFFF;
    }