帮闲电子商务_绿兔子源码_破解软件_网站源码_原创软件_游戏影视娱乐 - LVTZ.COM

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
查看: 11034|回复: 5

[分享] Discuz! X3.4论坛标题字数突破80的限制解决方法

  [复制链接]
  • TA的每日心情
    慵懒
    2024-10-31 18:37
  • 签到天数: 7 天

    [LV.3]偶尔看看II

    439

    主题

    491

    帖子

    9363

    积分

    管理员

    Rank: 9Rank: 9Rank: 9

    优秀版主突出贡献灌水之王宣传达人推广达人热心会员活跃会员最佳新人荣誉管理论坛元老

    精华
    80
    威望
    500
    听众
    0
    萝卜
    6972
    注册时间
    2020-2-4
    在线时间
    134 小时
    发表于 2020-9-4 00:08:12 | 显示全部楼层 |阅读模式
    在玩论坛的站长朋友,每次发文章标题都受字数的限制,一直找不到解决的办法,此教程为云墨亲自测试的经验总结,今天就分享给大家。

    下面由分享解决标题限制80字符方法步骤:

    一、数据库修改;

    二、修改JS验证字符数文件;

    三、修改模板中写死的字符限制数;

    四,修改函数验证文件;

    五,修改语言包文件。


    一、数据库修改,修改数据库标题字段的长度为200字符:运行下面的sql语句:
    (注意修改你的表的前缀)
    • ALTER TABLE `pre_forum_post` CHANGE `subject` `subject` VARCHAR(200) NOT NULL;
    • ALTER TABLE `pre_forum_rsscache` CHANGE `subject` `subject` char(200) NOT NULL;
    • ALTER TABLE `pre_forum_thread` CHANGE `subject` `subject` char(200) NOT NULL;

    [color=rgb(51, 102, 153) !important]复制代码


    二、修改JS验证字符数:
    1、找到文件static/js/forum_post.js的75-81行

    • if(($('postsubmit').name != 'replysubmit' && !($('postsubmit').name == 'editsubmit' && !isfirstpost) && theform.subject.value == "") || !sortid && !special && trim(message) == "") {
    •                 showError('抱歉,您尚未输入标题或内容');
    •                 return false;
    •         } else if(mb_strlen(theform.subject.value) > 80) {
    •                 showError('您的标题超过 80 个字符的限制');
    •                 return false;
    •         }

    [color=rgb(51, 102, 153) !important]复制代码


    修改为:
    • if(($('postsubmit').name != 'replysubmit' && !($('postsubmit').name == 'editsubmit' && !isfirstpost) && theform.subject.value == "") || !sortid && !special && trim(message) == "") {
    •                 showError('抱歉,您尚未输入标题或内容');
    •                 return false;
    •         } else if(mb_strlen(theform.subject.value) > 200) {
    •                 showError('您的标题超过 200 个字符的限制');
    •                 return false;
    •         }

    [color=rgb(51, 102, 153) !important]复制代码


    2、找到文件sitatic/js/forum.js的212到218行代码:
    • if(theform.message.value == '' || theform.subject.value == '') {
    •                 s = '抱歉,您尚未输入标题或内容';
    •                 theform.message.focus();
    •         } else if(mb_strlen(theform.subject.value) > 80) {
    •                 s = '您的标题超过 80 个字符的限制';
    •                 theform.subject.focus();
    •         }

    [color=rgb(51, 102, 153) !important]复制代码


    修改为:
    • if(theform.message.value == '' || theform.subject.value == '') {
    •                 s = '抱歉,您尚未输入标题或内容';
    •                 theform.message.focus();
    •         } else if(mb_strlen(theform.subject.value) > 200) {
    •                 s = '您的标题超过 200 个字符的限制';
    •                 theform.subject.focus();
    •         }

    [color=rgb(51, 102, 153) !important]复制代码


    三、修改模板中写死的字符限制数:
    1、找到文件\template\default\forum\post_editor_extra.htm的25到33行:


    • <!--{if $_GET[action] != 'reply'}-->
    •                                 <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} style="width: 25em" tabindex="1" /></span>
    •                         <!--{else}-->
    •                                 <span id="subjecthide" class="z">RE: $thread[subject] [<a href="javascript:;">{lang modify}</a>]</span>
    •                                 <span id="subjectbox" style="display:none"><input type="text" name="subject" id="subject" class="px" value="" style="width: 25em" /></span>
    •                         <!--{/if}-->
    •                         <span id="subjectchk"{if $_GET[action] == 'reply'} style="display:none"{/if}>{lang comment_message1} <strong id="checklen">80</strong> {lang comment_message2}</span>
    •                         <script type="text/javascript">strLenCalc($('subject'), 'checklen', 80)</script>
    •                 <!--{/if}-->

    [color=rgb(51, 102, 153) !important]复制代码


    修改为:

    • <!--{if $_GET[action] != 'reply'}-->
    •                                 <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} style="width: 25em" tabindex="1" /></span>
    •                         <!--{else}-->
    •                                 <span id="subjecthide" class="z">RE: $thread[subject] [<a href="javascript:;">{lang modify}</a>]</span>
    •                                 <span id="subjectbox" style="display:none"><input type="text" name="subject" id="subject" class="px" value="" style="width: 25em" /></span>
    •                         <!--{/if}-->
    •                         <span id="subjectchk"{if $_GET[action] == 'reply'} style="display:none"{/if}>{lang comment_message1} <strong id="checklen">200</strong> {lang comment_message2}</span>
    •                         <script type="text/javascript">strLenCalc($('subject'), 'checklen', 200)</script>
    •                 <!--{/if}-->

    [color=rgb(51, 102, 153) !important]复制代码


    2、找到文件\template\default\forum\forumdisplay_fastpost.htm31-32行:
    • <input type="text" id="subject" name="subject" class="px" value="" tabindex="11" style="width: 25em" />
    •                                 <span>{lang comment_message1} <strong id="checklen">80</strong> {lang comment_message2}</span>

    [color=rgb(51, 102, 153) !important]复制代码


    修改为:
    • <input type="text" id="subject" name="subject" class="px" value="" tabindex="11" style="width: 25em" />
    •                                 <span>{lang comment_message1} <strong id="checklen">200</strong> {lang comment_message2}</span>

    [color=rgb(51, 102, 153) !important]复制代码


    四,修改函数验证提示:
    找到文件source/function/function_post.php的361-363行:

    • if(dstrlen($subject) > 80) {
    •                 return 'post_subject_toolong';
    •         }

    [color=rgb(51, 102, 153) !important]复制代码


    修改为:
    • if(dstrlen($subject) > 200) {
    • return 'post_subject_toolong';
    • }

    [color=rgb(51, 102, 153) !important]复制代码


    五、找到语言包提示文字,打开 source/language/lang_messege.php 并找到998行改为:
    • ‘post_subject_toolong' => '抱歉,您的标题超过 80 个字符修改标题长度'

    [color=rgb(51, 102, 153) !important]复制代码

    修改为:

    • ‘post_subject_toolong' => '抱歉,您的标题超过 200 个字符修改标题长度'

    [color=rgb(51, 102, 153) !important]复制代码


    教程已全部完成,别忘记到后台——工具——更新一下缓存。
    回复

    使用道具 举报

    该用户从未签到

    254

    主题

    620

    帖子

    1973

    积分

    超凡大师

    Rank: 6Rank: 6

    精华
    0
    威望
    0
    听众
    0
    萝卜
    1353
    注册时间
    2020-2-9
    在线时间
    0 小时
    发表于 2020-9-4 00:08:12 | 显示全部楼层
    不错,顶一个!
    回复

    使用道具 举报

    该用户从未签到

    275

    主题

    692

    帖子

    2147

    积分

    超凡大师

    Rank: 6Rank: 6

    精华
    0
    威望
    0
    听众
    0
    萝卜
    1455
    注册时间
    2020-2-9
    在线时间
    0 小时
    发表于 2020-9-4 19:40:56 | 显示全部楼层
    一笑万古春,一啼万古愁,此景非你莫有,此貌非你莫属。
    回复

    使用道具 举报

    该用户从未签到

    274

    主题

    713

    帖子

    2071

    积分

    超凡大师

    Rank: 6Rank: 6

    精华
    0
    威望
    0
    听众
    0
    萝卜
    1358
    注册时间
    2020-2-9
    在线时间
    0 小时
    发表于 2020-9-5 09:14:03 | 显示全部楼层
    叮铃叮铃,楼主开门,我是送快递的!
    回复

    使用道具 举报

    该用户从未签到

    238

    主题

    661

    帖子

    2057

    积分

    超凡大师

    Rank: 6Rank: 6

    精华
    0
    威望
    0
    听众
    0
    萝卜
    1396
    注册时间
    2020-2-9
    在线时间
    0 小时
    发表于 2020-9-5 22:55:19 | 显示全部楼层
    滴答滴答,我路过的!
    回复

    使用道具 举报

  • TA的每日心情

    2021-9-24 11:34
  • 签到天数: 3 天

    [LV.2]偶尔看看I

    0

    主题

    4

    帖子

    79

    积分

    不屈白银

    Rank: 2

    精华
    0
    威望
    0
    听众
    0
    萝卜
    75
    注册时间
    2021-8-25
    在线时间
    0 小时
    发表于 2021-9-14 16:37:18 | 显示全部楼层
    滴答滴答,我路过的!
    回复

    使用道具 举报

    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    QQ|Archiver|手机版|小黑屋|帮闲电子商务LVTZ.COM |冀公网安备(冀ICP备17031353号-2)

    GMT+8, 2024-12-23 07:02 , Processed in 0.095121 second(s), 27 queries .

    Powered by Discuz! X3.4

    Copyright © 2001-2020, Tencent Cloud.

    快速回复 返回顶部 返回列表