Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

How to change the max characters

edited February 2011 in Vanilla 2.0 - 2.8
the system display "Body is 10181 characters too long."
Hello,
Please tell me how I can post more characters?
Tagged:

Comments

  • edited February 2011
    What are you posting exactly?

    Looking at code:
    function ValidateLength($Value, $Field) { $Diff = strlen($Value) - $Field->Length; if ($Diff <= 0) { return TRUE; } else { return sprintf(T('ValidateLength'), T($Field->Name), $Diff); } }

    You can see that database field for your text is restricted and you posted 10181 more characters then it is allowed.
  • I have the same problem. I have a forum solely dedicated to posting fanfics/stories and would like to know how to increase the character limit to unlimited if possible. I'm not an expert with PHP, so it'd be nice to guide me through the entire code-tweaking. Thanks!
  • the system display "Body is 10181 characters too long."
    Hello,
    Please me how I can post more characters?
    If you 're admin, you can change it : dashboard / Forum Settings / spam / Max comment length.
  • Yeah.
    But I still can't figure out why it is under Spam :-)
    Spammers started posting their favourite parts from War and Piece?
  • Yeah.
    But I still can't figure out why it is under Spam :-)
    Spammers started posting their favourite parts from War and Piece?
    Yes, it's strange and confusing. ^^
  • Seriously? It's under "spam"? That's.... bizarre. But thanks for the tip! LOL
  • Thanks all of you!!
Sign In or Register to comment.