10 years ago
2
Topic
Hello!

I have a problem, I added a text area with a maximum character size of 4000 but after 255 it doesn't save anything...I also added text editor field and on that ine it works. Do you know what the problem could be....?

Thanks,
Mike
Get a VIP membership
693 Posts
rpoy
10 years ago
0
Level 1
Hi Mike,

What version of Joomla and SEBLOD are you using?

I am trying to recreate your problem... The only thing that I can think of is if the field was first defined as one type and then changed to another.  Have you tried to recreate your Textarea with a maxlength of 4000?

I have been able to create a Textarea with a maxlength of 4000 which works fine.

hope that helps,

Randy

4229 Posts
Kadministrator
10 years ago
0
Level 1
Go to the field configuration - > storage section, select Alter and change dropdown to Text, this sets mysql database column to type that is not limited to 255 or 2048 characters as when VARCHAR(255) or VARCHAR(2048) are selected. Downside of text is that it is slower than when using varchar. You culd as well manually change column type to e.g. VARCHAR(5000), this number can go up to 65.000 but you need to do it manually (using e.g. PhpMyAdmin)
Get a VIP membership