Прошу внести изменения в файл system/core/model.php
public function getContentTableStruct(){
'id' => array('type' => 'primary'), 'title' => array('type' => 'varchar', 'size' => 100, 'fulltext' => true), 'content' => array('type' => 'text'),
на
public function getContentTableStruct(){
'id' => array('type' => 'primary'), 'title' => array('type' => 'varchar', 'size' => 255, 'fulltext' => true), 'content' => array('type' => 'text'),
чтоб создавая контенты свои не ползать постоянно править это ограничение.