MyBB Community Forums

Full Version: subject_too_long
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i faced this problem

subject_too_long

mybb version is 1.6.8 ...... what is the solution ??
The maximum length of the subject is 85 characters. If it's a new reply and the subject it 83< characters in length, you will need to remove the RE: from the reply.

Make sure the length of the subject is less than 85 characters.
i removed the RE: in the newreply.php and in showthread_quickreply

and i changed 85 to 95 but still i have problem
Could you provide your forum URL please and a link to a problematic thread?
i attached a pic of error
Ok - could you provide a link to your forum and a testing account?
How can I remove this limit or increase 85 character limit?
(2012-09-28, 07:41 AM)kunnusingh Wrote: [ -> ]How can I remove this limit or increase 85 character limit?

The maximum number of characters of post title (subject) is allowed to show in:
1. In post.php (inc/datahandlers/post.php) script:
if(my_strlen($subject) > 85)
        {
            // Subject is too long
            $this->set_error('subject_too_long', my_strlen($subject));
            return false;
        } 
2. In database: field subject in tables post, thread,..
Length/Values