MyBB Community Forums

Full Version: Error With message lenght
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi, 

I'm sorry i'm new with mybb. I setup my forum 2 days ago, and i'll do a lots of things on my forum.

I'll didn't see, but i have a problem, when i wan't to post a new thread i have character limite reached only with 1 Image !!! And the image size tell currently more than 64k :

Screen : 
https://ibb.co/PZn8Qyk

So when i see this problem my first reaction is to go on phpmyadmin and i see this : 

https://ibb.co/dMSrPty

So after i'll go into Admin Panel from my forum and i disable and i set max message lenght to 0 but the error stay ...

I don't really know what's happend.

Forum Url : https://zencommunity.xyz/
MyBB standard datatype is TEXT for posts - designed for storing 64K characters. In this case you reached the limit of this datatype. By definition there is no way to store more then defined.

Another question: What did you post to exceed the limitation? Wink

1. If the content of your post does not only contain characters in terms of text (but encoded inline data (images or any other BLOB data instead), try to optimize your content using appropriate tags to embed non-text based content.

2. If you're acutually insert large contents that will exceed the 64K limit, then you may consier to raise the datatype of the "message" field in your table mybb_posts to the next higher level, e.g. MEDIUMTEXT to cover 16M characters
(this may not be recommended in terms of DB-internal space consumption).

[ExiTuS]