52AV手機A片王|52AV.ONE
標題:
discuz x3.2 標題字符從80改成160的方法
[打印本頁]
作者:
IT_man
時間:
2015-1-21 10:13
標題:
discuz x3.2 標題字符從80改成160的方法
==========================================================
8 \) H5 \& B0 A6 f1 s9 f& b6 q
一、database修改,標題字數(英文字1Byte,中文2Bytes)為160字符:執行sql command:
2 n) T% y `2 k, s6 O) o) X# |+ T
(注意改為你的表前缀)
0 w! G( y5 \5 y
ALTER TABLE `pre_forum_post` CHANGE `subject` `subject` VARCHAR(120) NOT NULL;
) v: i! e% Z6 b" _( A+ E2 t
ALTER TABLE `pre_forum_rsscache` CHANGE `subject` `subject` char(120) NOT NULL;
* i* |6 g. O/ m
ALTER TABLE `pre_forum_thread` CHANGE `subject` `subject` char(120) NOT NULL;
7 o1 y! g7 m1 F. c: M
5 T: F% W! ~; C
或用phpdbadmin更改也可以
8 G, y* P4 i4 c! P
==========================================================
8 b$ D5 w1 h( g2 t
二、修改JS驗證字符數:
O c; Z* n% X. I3 J! E5 x, E4 G& T
1、找到 static/js/forum_post.js的74-80行
1 G4 y! e& W& i& f3 ?, j5 r
if(($('postsubmit').name != 'replysubmit' && !($('postsubmit').name == 'editsubmit' && !isfirstpost) && theform.subject.value == "") || !sortid && !special && trim(message) == "") {
9 ]" `9 y1 C" r+ O) {
showError('抱歉,您尚未輸入標題或內容);
" ]6 b& e! B" y- S# a3 J
return false;
/ }5 N8 e5 d b. V% C, Y) V' n
} else if(mb_strlen(theform.subject.value) > 80) {
8 n& m ~. M+ m- O- w2 i7 t* Q
showError('您的標題超過 80 個字符的限制');
6 y8 Q" T& \+ u% G8 X& o# S* M0 z
return false;
+ I2 p8 I) m; F n. |
}
6 p& x( M5 \/ M0 D2 L! A
0 q) J- q; K7 ^+ Z- E) I
數字80改為160
/ O' P1 ]) H4 V5 Y4 J
==========================================================
. e0 e6 }$ \( k, H! m5 z6 b
2、找到 sitatic/js/forum.js的209到215行:
k" Q0 X2 y5 Y
if(theform.message.value == '' && theform.subject.value == '') {
; S7 D/ A% w" z k
s = '抱歉,您尚未輸入標題或內容';
( h, G! ^- N% [' g( ]# P
theform.message.focus();
( o E0 c4 g# O/ {( \
} else if(mb_strlen(theform.subject.value) > 80) {
, H5 }5 P1 I( `1 x, D) o6 V
s = '您的標題超過 80 個字符的限制';
0 }4 t; Q+ b V3 Q% r2 x* d
theform.subject.focus();
$ a1 B4 V' F6 v, m; B$ v0 }/ a
}
B! I$ [9 Z5 w8 z& e0 k7 E
8 V; Z3 ^$ h1 v8 V8 V
% o$ u, I" V+ a4 u& j
數字80改為160
$ T: a6 I5 v( Q5 ?* A) I6 i
==========================================================
/ }" p, t; P- K, l- W
三、修改模板中寫死的字數限制:
6 S" k) I4 O! }8 T0 q7 ]2 r& C
1、找到 template\default\forum\post_editor_extra.htm第25行開始
1 [4 P: E3 n, [ R
修改前
Q6 M$ `/ B* w9 \; o; `- {+ T6 o
<!--{if $_GET[action] != 'reply'}--
3 p& F0 j% K5 z
<span><input type="text" name="subject" id="subject" class="px" value="$postinfo[subject]" {if $_GET[action] == 'newthread'}onblur="if($('tags')){relatekw('-1','-1'{if $_G['group']['allowposttag']},function(){extraCheck(4)}{/if});doane();}"{/if}#ff0000">80);" style="width: 25em" tabindex="1" /></span>
) g0 \$ Q+ O/ w$ p. G+ x% m3 p6 }
<!--{else}--><!--reply-->
' K4 p4 D, T; e* `* m
<span id="subjecthide" class="z">RE: $thread[subject] [<a href="javascript:;"#ff0000">80);return false;">{lang modify}</a>]</span>
% v. Z; N$ X: G
<span id="subjectbox" style="display:none"><input type="text" name="subject" id="subject" class="px" value=""#ff0000">80);" style="width: 25em" /></span>
" z4 a7 U1 Y0 w& G* E+ P$ t
<!--{/if}-->
% n+ Y% T+ n' l, E2 H
<span id="subjectchk"{if $_GET[action] == 'reply'} style="display:none"{/if}>{lang comment_message1} <strong id="checklen">80</strong> {lang comment_message2}</span>
, _( d9 c9 E: @4 { ]# N
<script type="text/javascript">strLenCalc($('subject'), 'checklen',
80
)</script>
+ u4 f8 `0 d* H. H/ d
: c+ q$ F" I2 ]$ j: t
將紅色數字改為160
/ [+ f) c2 Q. c7 `7 V
==========================================================
) v- D7 r& t4 x" |3 k& `% G0 n. K
2.找到 template\default\forum\forumdisplay_fastpost.htm 地31行開始
7 Z& A& R+ [7 v( z
修改前
+ v6 S# N8 b# d
<input type="text" id="subject" name="subject" class="px" value=""#ff0000">80);" tabindex="11" style="width: 25em" />
, l9 f3 M$ e0 B' c
<span>{lang comment_message1} <strong id="checklen">80</strong> {lang comment_message2}</span>
6 ]! i2 w" V) }
6 N$ w) F( r. j" U1 U
將紅色數字80改為160,第二個80可改可不改
* i" ]5 W) R! i/ K: K
==========================================================
+ L% _; O1 b e- ^% m [# K' j- q
四,修改function驗證提示:
- D7 q' q( L) }9 `: k5 N; |7 y
source/function/function_post.php的361-363行:
6 T! m3 @# ]4 d$ }) B
修改前
0 c$ V; m/ X( h" L
if(dstrlen($subject) > 80) {
# T$ `$ |" V% \5 }& I
return 'post_subject_toolong';
& V* V; g8 Z' X$ P- ?( O
}
# a6 G2 q% h- h6 S. N) \: C
將數字80改為160
o. W( O! A3 J
==========================================================
# b6 S5 y. B$ @5 T% n2 V
五、找到訊息提示文字的php檔,打開 source/language/lang_messege.php 找到998行改為:
+ Z# x" X/ L6 I- B) E
'post_subject_toolong' => '抱歉,您的標題超過 160 個字符修改標題長度',
+ l1 s4 G0 T) l8 p
==========================================================
' z& X1 `$ L' W4 P# T& U, r
上面五個步驟完成記得最後最重要的一個步驟是到後台更新緩存才會生效喔
" j7 Z( ?5 U2 J- ~4 D, m8 X
歡迎光臨 52AV手機A片王|52AV.ONE (https://www.52av.one/)
Powered by Discuz! X3.2