K
Asked
Bangla language is not visible in the post of the site, what is the solution?
Attachments
- MSAnsweredHello,
Please check your database's topics table. Are the characters showing fine there? - KAnsweredBangla, Hindi, Arabic does not support any language, only English can be seen
- MSAnsweredHello,
Can you check your database CHARACTER SET?
```sql
SELECT @@character_set_database, @@collation_database;
```
If not utf8 then you can change
```sql
ALTER DATABASE dbname CHARACTER SET utf8 COLLATE utf8_general_ci;
```
Thank you - KAnsweredwork done
,,,,,,
Thank you very much - Login to Reply