4
You won't solve this by using the [pagebreak] feature.
A user of the wiwimod 0.83 stumbled into the same. From my own experiences I knew there was a solution to adjust the specific sql table.
Explanation sql rows:
tinytext: 255 (nice for sigs)
text: 65535
mediumtext: 16777215
longtext: 4294967295
within caractars use mediumtext... which is approx. 2mb text.
TinyBLOB and TinyTEXT
A BLOB (binairy large object) or TEXT with maximum length of: 2^8 - 1 (=255) signs.
BLOB and TEXT
A BLOB or TEXT with maximum length of 2^16 -1 (=65,535) signs.
MEDIUMBLOB and MEDIUMTEXT
A BLOB or TEXT with maximum length of 2^24 - 1 (=16,777,215) signs.
LONGBLOB and LONGTEXT
A BLOB or TEXT with maximum length of 2^32 - 1(=4,294,967,295) signs.
This means this field can contain a max of 4GB data/text.
Therefore I'd advice to change the sql table into longtext (or mediumtext), to solve problem of the textlimit.
If the specific sqltable already has longtext, could it be that your text is more than the 4 GB????
Grtz., Shine