MyBB Community Forums

Full Version: The subject is too long
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I try to add about 500 pictures to my forum and it is vacation photos. But when I send the thread, you get this message. I have searched the entire forum on solution but find nothing that fits in for me.

Have any tips? I use the latest version and theme.

[Image: T4xf5O4.png]
ACP > Configuration > Posting

You can edit the minimum message length and how many attachments you can use in a post.
message column data type (the one prepared to store post contents) in mybb_posts is set to TEXT, that can handle a maximum of 65535 characters. In normal conditions it should suffice, in fact it is recommended for storing something like an article, but if you're really stubborn to insert all your content in one post you can change your message column data type to MEDIUMTEXT.

You can change it manually with your administration tool for your database or running this query:

ALTER TABLE mybb_posts
MODIFY message MEDIUMTEXT NOT NULL
(should work on MySQL, MariaDB and Oracle)