Posted on: 03/03/06 05:59pm
By: Anonymous (lee)
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.
thanks a lot
Pages are cut after certain length
Posted on: 03/04/06 01:56am
By: Robin
[QUOTE BY= lee]Do you know if this is a limit of geeklog[/QUOTE]
Most probably it's a database limitation. Check the table gl_staticpages and extend it.
Pages are cut after certain length
Posted on: 03/04/06 04:05am
By: Dirk
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
Pages are cut after certain length
Posted on: 03/04/06 11:26am
By: Anonymous (lee)
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
Pages are cut after certain length
Posted on: 03/05/06 04:34pm
By: Dirk
Did you actually change your database or did you only change the mysql_tableanddata.php file? Just checking ...
bye, Dirk
Pages are cut after certain length
Posted on: 03/11/06 02:24pm
By: Anonymous (lee)
I just change the line in mysql_tableanddata.php file
(don't know how to change in the database itself)
Pages are cut after certain length
Posted on: 03/12/06 05:16am
By: Dirk
You'll have to make the change in the database. Use phpMyAdmin or some tool like that.
bye, Dirk