lee

Anonymous
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

Status: offline

Robin

Forum User
Full Member
Registered: 02/15/02
Posts: 725
Quote by leeBig Grino you know if this is a limit of geeklog

Most probably it's a database limitation. Check the table gl_staticpages and extend it.
Geeklog Polish Support Team

Status: offline

Dirk

Site Admin
Admin
Registered: 01/12/02
Posts: 13073
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

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

Status: offline

Dirk

Site Admin
Admin
Registered: 01/12/02
Posts: 13073
Did you actually change your database or did you only change the mysql_tableanddata.php file? Just checking ...

bye, Dirk

lee

Anonymous
I just change the line in mysql_tableanddata.php file

(don't know how to change in the database itself)

Status: offline

Dirk

Site Admin
Admin
Registered: 01/12/02
Posts: 13073
You'll have to make the change in the database. Use phpMyAdmin or some tool like that.

bye, Dirk