Only approximately 16,000 characters are currently permitted in fields f_field1 - f_field6, as the column is formatted as "text".
Please change the columns to "mediumtext" (mariadb) for new systems, and if possible also for existing one.
As workaround you can execute:
alter table faq_item modify f_field1 MEDIUMTEXT;
alter table faq_item modify f_field2 MEDIUMTEXT;
alter table faq_item modify f_field3 MEDIUMTEXT;
alter table faq_item modify f_field4 MEDIUMTEXT;
alter table faq_item modify f_field5 MEDIUMTEXT;
alter table faq_item modify f_field6 MEDIUMTEXT;
Thats possible without any problems...
Thanks!
Only approximately 16,000 characters are currently permitted in fields f_field1 - f_field6, as the column is formatted as "text".
Please change the columns to "mediumtext" (mariadb) for new systems, and if possible also for existing one.
As workaround you can execute:
alter table faq_item modify f_field1 MEDIUMTEXT;
alter table faq_item modify f_field2 MEDIUMTEXT;
alter table faq_item modify f_field3 MEDIUMTEXT;
alter table faq_item modify f_field4 MEDIUMTEXT;
alter table faq_item modify f_field5 MEDIUMTEXT;
alter table faq_item modify f_field6 MEDIUMTEXT;
Thats possible without any problems...
Thanks!