Hi every one, I have this problem of if a static page is too long (text), it is being cut. Do you know if this is a limit of geeklog or is there any setting that we can fixed.
To be more precise: The sp_content field is of type TEXT which is limited to 64 KB. Changing the type to MEDIUMTEXT would give you 16 MB theoretically, but your browser and/or webserver will probably throw in the towel much earlier.
bye, Dirk
03/04/06 11:26am
lee
Anonymous
Hi Dirk, I found: CREATE TABLE {$_TABLES['staticpage']} ( sp_id varchar(40) NOT NULL default '', sp_uid mediumint( NOT NULL default '1', sp_title varchar(12 NOT NULL default '', sp_content mediumtext NOT NULL,
I changed sp_content from text to mediumtext, but I don't know if that line is correct like that or not. It still doesn't extend more text for me. thanks