[å•

phpBB Installation & Usage Support
phpBB 2 安裝於各類型作業平台之問題討論;外掛問題,請到相關版面依發問格式發表!
(發表文章請按照公告格式發表,違者砍文)

版主: 版主管理群

版面規則
本區是討論關於 phpBB 2.0.X 架設安裝上的問題,只要有安裝任何外掛,請到外掛討論相關版面按照公告格式發表。
(發表文章請按照公告格式發表,違者砍文)
主題已鎖定
onnote
星球普通子民
星球普通子民
文章: 6
註冊時間: 2003-09-03 00:49

[å•

文章 onnote »

In my forum, i only can put 15 chinese words in the subject. Is there any mod to increase it? Thank you in advance.
JFA
星球公民
星球公民
文章: 232
註冊時間: 2003-06-23 23:21
來自: 香港
聯繫:

文章 JFA »

go to DB and enlarge the max length of post_topic_text
~~~~我的Forum~~~~
圖檔
^^歡迎光臨^^
onnote
星球普通子民
星球普通子民
文章: 6
註冊時間: 2003-09-03 00:49

文章 onnote »

JFA 寫:go to DB and enlarge the max length of post_topic_text
sorry but can you be more specific please? what is DB? and how to enlarge the length of the post topic text? where should i start???

Sorry i;m new.... thank you for your patient!
Bot
星球普通子民
星球普通子民
文章: 26
註冊時間: 2002-11-13 01:05

文章 Bot »

Just search long subject MOD...
Mowd
竹貓忠實會員
竹貓忠實會員
文章: 326
註冊時間: 2002-06-26 01:17
來自: 台北
聯繫:

文章 Mowd »

howard123639
星球普通子民
星球普通子民
文章: 8
註冊時間: 2003-09-06 22:33
聯繫:

文章 howard123639 »

go to DB
Bot
星球普通子民
星球普通子民
文章: 26
註冊時間: 2002-11-13 01:05

文章 Bot »

代碼: 選擇全部

############################################################## 
## MOD Title: Long Subject (120 letters) 
## MOD Author: Ralendil < ralendil@hotmail.com > Ravaille Franck - http://civs.org 
## MOD Description: Put to 120 subject limit. 
## 
## MOD Version: 1.0.0 
## 
## Installation Level: Easy 
## Installation Time: 1 minute 
## Files to Edit: templates/subSilver/posting_body.tpl 
## Included Files: N/A 
############################################################## 
## For Security Purposes, Please Check: http://www.phpbb.com/mods/downloads/ for the 
## latest version of this MOD. Downloading this MOD from other sites could cause malicious code 
## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered 
## in our MOD-Database, located at: http://www.phpbb.com/mods/downloads/ 
############################################################## 
## Author Notes: 
## 
############################################################## 
## MOD History: 
## 1.0.0 Release 
############################################################## 
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
############################################################## 

# 
#-----[ SQL ]------------------------------------------ 
# 
ALTER TABLE `phpbb_topics` CHANGE `topic_title` `topic_title` CHAR(120) NOT NULL 


# 
#-----[ SQL ]------------------------------------------ 
# 
ALTER TABLE `phpbb_posts_text` CHANGE `post_subject` `post_subject` VARCHAR(120) DEFAULT NULL 

# 
#-----[ OPEN ]------------------------------------------ 
# 
templates/subSilver/posting_body.tpl 

# 
#-----[ FIND ]------------------------------------------ 
# 
<input type="text" name="subject" size="45" maxlength="60" style="width:450px" tabindex="2" class="post" value="{SUBJECT}" /> 

# 
#-----[ REPLACE WITH ]------------------------------------------ 
# 
<input type="text" name="subject" size="45" maxlength="120" style="width:450px" tabindex="2" class="post" value="{SUBJECT}" /> 

# 
#-----[ SAVE/CLOSE ALL FILES ]---------------------------------------- 

# 
# EoM
it enable your topic title to 120 letters
but you should notice again that when you type chinese as you topic title
a chinese word is equal to two letters(or bytes)
so at the last step,i recommend that not to change it..
keep maxlength="60"
主題已鎖定

回到「phpBB 2 安裝與使用」