UN
Asked
I have installed properly the forum but it's not showing me properly after installation
here is my link https://bookzzz.co/forum/
here is my link https://bookzzz.co/forum/
- MSAnsweredHello,
Please check the `base_url` in `app/config/config.php` and make sure it's `https://`
Thank you - UNAnsweredThank you it works
- UNAnsweredhow can i increase comment words limit. i want to make it above 200k
- MSAnsweredHello,
Which comment? If you are talking about the description on the listing page, then the view file is `themes/default/views/forums/index.php`
> Please be informed that we don't offer support for modifications and modified versions. You are allowed to do it at your own risk as per license.
Thank you - UNAnsweredno, I am talking about the reply which the user will make on the thread. as you can see in this example there is one reply.https://bookzzz.co/forum/general/buying-kratom
So, how can we increase the character limit for reply comment
thanks - MSAnsweredHello,
System don't impose such limit but your database column would have. That field is saved in `body` column of the `posts` table. You can modify that as you need. May be change it from text to longtext.
```sql
ALTER TABLE `tec_posts` CHANGE `body` `body` longtext NOT NULL;
```
Thank you - Login to Reply