[問題]portal登入(OK)

phpBB 2 MOD Support
無論是官方或非官方認證之外掛,安裝與使用問題討論。
(發表文章請按照公告格式發表,違者砍文)

版主: 版主管理群

主題已鎖定
頭像
小示
星球公民
星球公民
文章: 48
註冊時間: 2003-10-15 00:21
聯繫:

[問題]portal登入(OK)

文章 小示 »

在Apache server上
網址打上後
連到討論區並不昰portal頁面上
如何解決

中文話不見了~有人中文化嗎

裝portal時~下面個看不懂~麻煩可以翻譯一下嗎?
#-----[ SAVE/UPLOAD ALL FILES ]------------------------------------------
#
# HOW TO MAKE YOUR WEBSITE OPEN TO FILE portal.php INSTEAD OF index.php ?
# You can use one of the following methods! Lots of luck!
#
#
# o Method 1: (for Apache server)
# create/modify file .htaccess in phpBB root directory
# add/edit this line:
#
# DirectoryIndex index.html index.htm portal.php index.php
#
#
# o Method 2: {use JavaScript - if you cannot apply the 1st method)
# create file index.html in phpBB root directory (without #)
#
# <html>
# <head>
# <title>Redirecting...</title>
# <script language="JavaScript">
# self.location.href='portal.php';
# </script>
# </head>
# <body>
# </body>
# </html>
#
# if your phpBB was placed in a subdirectory to the
# webroot, like: http://something.com/forum
# you could create index.html in the webroot and modify the
# line 5 to self.location.href='forum/portal.php';
#
#
# o Method 3: I think maybe you can find out method 3 yourself ;)
#
#--------------------------------------------------------------------
# CONFIGURATION FOR ezPortal
#
# OPEN: portal.php
#
# FIND:
//
// Set configuration for ezPortal
//

// Welcome Text: note that we are in PHP file, so use \' instead of ' and use \\\ instead of \ (HTML enabled)
$CFG['welcome_text'] = 'Welcome to <b>My Community</b><br /><br />Thanks for using ezPortal,<br /><br />Have a good time! ^_^';

// Number of news on portal
$CFG['number_of_news'] = '5';

// Length of news
$CFG['news_length'] = '200';

// News Forum ID: separate by comma for multi-forums, eg. '1,2,5'
$CFG['news_forum'] = '1';

// Poll Forum ID: separate by comma for multi-forums, eg. '3,8,14'
$CFG['poll_forum'] = '1';

//
// END configuration
// --------------------------------------------------------
#
# Adjust the above values in portal.php
#
#--------------------------------------------------------------------
#
# EoM
最後由 小示 於 2004-05-25 03:58 編輯,總共編輯了 1 次。
頭像
alexpan
星球公民
星球公民
文章: 198
註冊時間: 2003-09-22 20:35
來自: 飄風優海
聯繫:

文章 alexpan »

弄個框架頁阿^^
●從竹貓學習到的東西是@@.......善加利用搜尋^^"
alextung
星球普通子民
星球普通子民
文章: 2
註冊時間: 2004-05-20 09:09

文章 alextung »

小示 寫:在Apache server上
網址打上後
連到討論區並不昰portal頁面上
如何解決

中文話不見了~有人中文化嗎

裝portal時~下面個看不懂~麻煩可以翻譯一下嗎?

代碼: 選擇全部

#-----[ SAVE/UPLOAD ALL FILES ]------------------------------------------ 
# 
# HOW TO MAKE YOUR WEBSITE OPEN TO FILE portal.php INSTEAD OF index.php ? 
# You can use one of the following methods! Lots of luck! 
# 
# 
# o Method 1: (for Apache server) 
# create/modify file .htaccess in phpBB root directory 
# add/edit this line: 
# 
# DirectoryIndex index.html index.htm portal.php index.php 
# 
# 
# o Method 2: {use JavaScript - if you cannot apply the 1st method) 
# create file index.html in phpBB root directory (without #) 
# 
# <html> 
# <head> 
# <title>Redirecting...</title> 
# <script language="JavaScript"> 
# self.location.href='portal.php'; 
# </script> 
# </head> 
# <body> 
# </body> 
# </html> 
# 
# if your phpBB was placed in a subdirectory to the 
# webroot, like: http://something.com/forum 
# you could create index.html in the webroot and modify the 
# line 5 to self.location.href='forum/portal.php'; 
# 
# 
# o Method 3: I think maybe you can find out method 3 yourself  
# 
#-------------------------------------------------------------------- 
這一段大意是說,要使您的網址開啟時直接進入portal.php而非index.php的方法有以下幾種:
  1. (for Apache server) 請直接建立或者修改在phpBB root目錄底下的 .htaccesss檔,增加或編輯這一行
    DirectoryIndex index.html index.htm portal.php index.php
  2. 使用JavaScript(若您無法使用第一種方法時),請建立index.html檔於phpBB的root目錄底下,index.html的內容如下:
    <html>
    <head>
    <title>Redirecting...</title>
    <script language="JavaScript">
    self.location.href='portal.php';
    </script>
    </head>
    <body>
    </body>
    </html>

    若您的phpBB放置於次目錄底下,例如:http://something.com/forum,則您可以將上述第5行更改為\r
    self.location.href='forum/portal.php';
  3. 或許您可以自己找到其他的方法
alextung
星球普通子民
星球普通子民
文章: 2
註冊時間: 2004-05-20 09:09

Re: [問題]portal登入

文章 alextung »

小示 寫:在Apache server上
網址打上後
連到討論區並不昰portal頁面上
如何解決

中文話不見了~有人中文化嗎

裝portal時~下面個看不懂~麻煩可以翻譯一下嗎?

代碼: 選擇全部

# CONFIGURATION FOR ezPortal 
# 
# OPEN: portal.php 
# 
# FIND: 
// 
// Set configuration for ezPortal 
// 

// Welcome Text: note that we are in PHP file, so use \' instead of ' and use \\\ instead of \ (HTML enabled) 
$CFG['welcome_text'] = 'Welcome to <b>My Community</b><br /><br />Thanks for using ezPortal,<br /><br />Have a good time! ^_^'; 

// Number of news on portal 
$CFG['number_of_news'] = '5'; 

// Length of news 
$CFG['news_length'] = '200'; 

// News Forum ID: separate by comma for multi-forums, eg. '1,2,5' 
$CFG['news_forum'] = '1'; 

// Poll Forum ID: separate by comma for multi-forums, eg. '3,8,14' 
$CFG['poll_forum'] = '1'; 

// 
// END configuration 
// -------------------------------------------------------- 
# 
# Adjust the above values in portal.php 
# 
#-------------------------------------------------------------------- 
# 
# EoM 
這一段是在說明ezportal的設定,大致上跟之前您安裝ezportal的方式差不多,就是一些設定值您可以自行更改。
最後由 alextung 於 2004-05-20 11:28 編輯,總共編輯了 1 次。
design
竹貓忠實會員
竹貓忠實會員
文章: 330
註冊時間: 2003-10-31 00:36
聯繫:

文章 design »

最簡單的方法是, 一般 apache 預設最先抓的是 index.html

您可以做一個轉向頁.. 用 meta 標籤轉到 portal.php , 一樣有這個效果
f40net
星球普通子民
星球普通子民
文章: 4
註冊時間: 2003-08-05 16:33

文章 f40net »

我使用的方法是在根目錄建立一個index.htm,內容:

代碼: 選擇全部

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Content-Language" content="zh-tw">
<title>打你自己的</title>
</head>

<frameset rows="0,*" framespacing="0" border="0" frameborder="0">
  <frame name="null" src="" scrolling="no" noresize marginwidth="0" marginheight="0">
  <frame name="enter" src="portal.php" scrolling="auto" noresize marginwidth="0" marginheight="0">
</frameset>

</html>
輸入你的網址後,就是portal.php,當然也可以指定其他網頁,只要把src="portal.php"改成任何你要的網頁名稱(路徑要正確),還有在站內按下連結後,網址列都不會變動,都是維持在http://www.yourname.com,而不會出現"http://www.yourname.com/posting.php?mode=reply&t=25664"
頭像
小示
星球公民
星球公民
文章: 48
註冊時間: 2003-10-15 00:21
聯繫:

文章 小示 »

我適用下面這個方式
因為很快^^

(for Apache server) 請直接建立或者修改在phpBB root目錄底下的 .htaccesss檔,增加或編輯這一行
DirectoryIndex index.html index.htm portal.php index.php
主題已鎖定

回到「外掛問題討論」