Page 1 of 1

[SOLVED] Information Page Limit?

Posted: Fri Mar 09, 2012 3:55 pm
by SamNabz
Hi all,

Is there a character limit set on the information page? I've looked in the corresponding files and can't seem to find it.

Reason I ask is I am trying to add a Colour Chart on one of the pages which is a table of 1000+ colour 'cards' but it throws the page out after about 30 or so rows..

Any info is appreciated.

Re: Information Page Limit?

Posted: Fri Mar 09, 2012 8:51 pm
by grgr
You could try changing the 'description' field type from 'text' to 'mediumtext' on the 'information_description' table through your phpMyAdmin.

Re: Information Page Limit?

Posted: Sun Mar 11, 2012 8:02 am
by SamNabz
Hi grgr, thanks for the quick reply.

It worked, but I ended up using LONGTEXT, as MEDIUMTEXT wasn't enough.

Code: Select all

ALTER TABLE `information_description` CHANGE `description` `description` LONGTEXT CHARACTER SET utf8 COLLATE utf8_bin NOT NULL
Thanks again.

Re: [SOLVED] Information Page Limit?

Posted: Mon Dec 17, 2012 8:00 am
by mandamexico
worked perfectly, thank you grgr!

Re: [SOLVED] Information Page Limit?

Posted: Fri Aug 15, 2014 4:58 pm
by doannhien
grgr wrote:You could try changing the 'description' field type from 'text' to 'mediumtext' on the 'information_description' table through your phpMyAdmin.
Worked too. Thank Grgr :)

Re: Information Page Limit?

Posted: Wed Dec 14, 2016 5:52 pm
by CoronaTechniek
SamNabz wrote:Hi grgr, thanks for the quick reply.

It worked, but I ended up using LONGTEXT, as MEDIUMTEXT wasn't enough.

Code: Select all

ALTER TABLE `information_description` CHANGE `description` `description` LONGTEXT CHARACTER SET utf8 COLLATE utf8_bin NOT NULL
Thanks again.
Thanks this works on 2.2.0.0 too :ok: :ok:

Re: [SOLVED] Information Page Limit?

Posted: Thu Feb 22, 2018 12:05 pm
by Mored1984
Work for me, thanx