I think this is a MySQL-related issue, but correct me if I'm wrong.
Believe it or not, but I've written a post that apparently surpasses some limit on the maximum length. I noticed that my post gets truncated automatically. After much experimenting, I managed to figure out that it cuts off at 65,535 characters - anything past that doesn't make the cut.
I've worked a bit in MS Access, and I knew field sizes could be limited, so I ventured into PHPMyAdmin to see if I could change things around to make it work. "Length/Values" setting for "post_content" looked promising, but it didn't make a difference when I put in a number. I'm probably way off track.
Any insight is much appreciated!!
Thanks,
JazzCrazed
OK, so some more searching in the mysql website did turn up a solution, and it is SQL related... I have to change the type from "TEXT" to "LONGTEXT" - 2^16 to 2^32.
Sorry!