
我用以下連結的做法, 把我的site.php設定成網站的首頁:
http://phpbb-tw.net/phpbb/viewtopic.php ... t=easysite
又跟著easysite安裝包中的extra的tips中的指示, 把site的左邊的panel放在討論區裏, 並跟討論區的風格使用同一個css~

現在改成了這樣~
http://www.ramble.com.hk
還需要改一改其他的地方~
版主: 版主管理群
也因為我跟著easysite中的extra的指示加了panel在我的view forum裏, 而那個premodified_files_phpbb2019.zip又重複修加了view forum, 因此我要重新安easysite的指示, 改以下兩個檔:#-----[ OPEN ]------------------------------------------
#
common.php
#
#-----[ FIND ]------------------------------------------
#
$board_config = array();
#
#-----[ AFTER, ADD ]------------------------------------------
#
// EasySite MOD
$site_config = array();
#
#-----[ FIND ]------------------------------------------
#
if (file_exists('install') || file_exists('contrib'))
#
#-----[ BEFORE, ADD ]------------------------------------------
#
// EasySite MOD
$sql = "SELECT *
FROM " . SITE_CONFIG_TABLE;\r
if( !($result = $db->sql_query($sql)) )
{
message_die(CRITICAL_ERROR, "Could not query site config information", "", __LINE__, __FILE__, $sql);
}
while ( $row = $db->sql_fetchrow($result) )
{
$site_config[$row['config_name']] = $row['config_value'];
}
#-----[ 打開 ]------------------------------------------
#
viewforum.php
#
#-----[ 尋找 ]------------------------------------------
#
$template->set_filenames(array(
'body' => 'viewforum_body.tpl')
);
#
#-----[ 之間, 尋找 ]----------------------------------
#
'body' => 'viewforum_body.tpl')
#
#-----[ 之前, 加上 ]------------------------------------
#
'sitepanel' => 'sitepanel_body.tpl',
#
#-----[ 尋找 ]------------------------------------------
#
//
// Parse the page and print
//
$template->pparse('body');
#
#-----[ 之前, 加上 ]-------------------------------------
#
include($phpbb_root_path . 'includes/sitepanel.'.$phpEx);
$template->assign_var_from_handle('SITEPANEL', 'sitepanel');
#
#-----[ 打開 ]------------------------------------------
#
viewforum_body.tpl
#
#-----[ 尋找 ]------------------------------------------
#
<form method="post" action="{S_POST_DAYS_ACTION}">
#
#-----[ 之前, 加上 ]------------------------------------
#
<table border="0" cellpadding="1" cellspacing="0" width="100%">
<tr><td valign="top" width="20%">
{SITEPANEL}
<td valign="top" style="padding-left:20px">
#
#-----[ 尋找 ]------------------------------------------\r
#
<td align="right"><span class="gensmall">{S_AUTH_LIST}</span></td>
</tr>
</table>
#
#-----[ 之後, 加上 ]-------------------------------------
#
</td></tr></table>