How to you lift the words limit in an article?
I notice the blog post truncates auto after a certain point. How do you remove this limit?
This is an archived forum and the content is probably no longer relevant, but is provided here for posterity.
The active forums are here.
March 26, 2010 12:38am
Subscribe [3]#1 / Mar 26, 2010 12:38am
How to you lift the words limit in an article?
I notice the blog post truncates auto after a certain point. How do you remove this limit?
#2 / Mar 26, 2010 7:17am
not sure what your referring to??? i have never seen a limitation that isn’t self setup.
In your case it might be that the custom field you have is limited in the setup of that custom field - those i suspect this is not the case.
I suspect that you template code is restricting the word limit when you have a blog list of multiple articles. As otherwise the length of this list page would be huge???
If so i would suggest a plugin like “word_limit” has been used in the appropriate template.
#3 / Mar 26, 2010 7:52am
I meant that there is a limit to how long the article can be. How can that limit be increased?
#4 / Mar 26, 2010 8:00am
You’ll need to edit your SQL table to change the data type to accommodate more data.
#5 / Mar 26, 2010 8:02am
MySQL TEXT fields have a limit of 65,000 bytes. If you insert anything larger than that in to a normal TEXT field mySQL will silently truncate your data without telling you (meaning software checks are probably a good idea). MEDIUMTEXT will store 16 million characters and LONGTEXT can handle over 4 trillion, but this information does not appear to be readily available in the online mySQL manual
#6 / Mar 26, 2010 11:55am
hmm…how do you make the changes in mySQL?