Your problem is that the title/subject field is only 60 bytes long in the database, and Thai requires two bytes per character, so it has a 30-character limit.
To fix that, you can use this SQL command:
- Code: Select all
ALTER TABLE phpbb_posts_text CHANGE `post_subject` `post_subject` VARCHAR( 254 ) DEFAULT NULL;
That will give you 128 characters to work with.