1 頁 (共 1 頁)

[問題] 無法修正發表主題長度的問題?

發表於 : 2004-03-20 16:54
sam99
請問各位大大:

環境: redhat linux 9.0 /phpbb 2.0.6

我依照Bot大大發表的修正2.0.6主題長度的方式去作

代碼: 選擇全部


#-----[ 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 
所以我就開始下列步驟:

mysql -u abc -p
輸入密碼\r

use abc;

Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed

mysql> alter 'phpbb_topics' change 'topic_title' 'topic_title' char(120) not null
->

請問不管我怎麼打它都會出現 -> 這個符號艾,我就沒辦法繼續下一個指令了啊?

要如何解呢? 謝謝 ^^

發表於 : 2004-03-21 00:01
aiken
建議你使用 phpMyAdmin 做