|
Problem
You've entered content into Ensight's Design Mode editor, but part of the content gets cut off after saving it.
How to solve it
Ensight has a physical limit on the size of it's content data fields. This limit sits at 65,535 characters within a default installation. Should you need to increase the amount of data stored, follow these instructions:
MySQL:
To increase the amount of content that can be entered within Ensight's publishing system, edit the structure of the Content table and change the Full_BLOB field's type from BLOB to MEDIUMBLOB (or LONGBLOB if necessary, but it's not recommended)
To increase the amount of content that can be entered within Ensight's e-mail communication system, edit the structure of the Mails table and change the Full_BLOB field's type from BLOB to MEDIUMBLOB (or LONGBLOB if necessary, but it's not recommended)
MS-SQL:
Edit the php.ini file on the server and change mssql.textlimit and mssql.textsize to the minimum field size required.
|