1
Hi dudes
WF-Channel...the 'Page Content' textarea in the 'Create Document' section will allow you to put html in there and render it as a page. No problem. There's also the option to import the data into the database for faster access (and searching capabilities).
I want to add it to the database, but I have a massive html document that I'm trying to import into the database. However, it seems to have a maximum limit and it loses some of the html so the page doesn't render properly.
I've tried to figure out if I can make it bigger so it will accept more data. Using phpMyAdmin I've worked out that the data filed is 'Page' of type 'text'. Looked on the MySQL website and it says that the maximum size of a text and BLOB object is as follows :
" The maximum size of a BLOB or TEXT object is determined by its type, but the largest value you actually can transmit between the client and server is determined by the amount of available memory and the size of the communications buffers. You can change the message buffer size by changing the value of the max_allowed_packet variable, but you must do so for both the server and your client program. For example, both MySQL and mysqldump allow you to change the client-side max_allowed_packet value."
Is there any way I can make it bigger?
Thanks
Ted