Posts: 14
Threads: 1
Joined: Mar 2015
Reputation:
0
When i was make the log system with sa-mp file system, my logs would be problems about Turkish characters. If anyone use Turkish character in the server, my log file sucks. Print like "ю" etc. characters. How can i fix that?
And absolutely sorry for my bad English.
Posts: 3,004
Threads: 12
Joined: May 2011
The charset doesn't support it probably, use
to see the charset
To list all the available charsets
Code:
iconv -f ISO-8859-1 -t UTF-8//TRANSLIT input.file -o out.file
To set the charset.
whereas,-f CHARSET if "from charset" and -t CHARSET is "to charset"
`TRANSLIT` means that it will try to convert the file to another character, in case of a fail, it will replace it with a similar looking character that it can convert to.