Increasing Comment Size

Is there a way to increase the length of the comments. Even the ones I leave are butchered.

Now that we have a nice little captcha, I definitely want to allow a decent comment size so that at least the user has a chance to communicate.

I suppose this might be a Request for a Feature if I were to be able to configure it from the admin site settings panel, but for right now I want to change wherever it is that is limiting comments to a short sentance. Is it a MySQL limit? If so I can get My buddy to show me how to make that field much larger.

Thanks!
 

ysmods

New Member
Jan 29, 2013
860
1
0
UK
www.ysmods.com
As standard the comments are limited to 255 characters. You can change that by running this MySQL query.

Code:
ALTER TABLE  `font_comment` CHANGE  `comment`  `comment` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL;