1

What is the recommended locale setting on a server that is used as an web and database server. Are there any drawbacks not using UTF-8 as default?

DrDol
  • 303
  • 1
  • 7

2 Answers2

3

Some legacy application might not like it, but you should definitely use UTF-8 for new installations.

  • for converting files (the contents) you can use iconv(1)
  • for converting filenames you can use convmv(1)

Other special applications (application generated data) might require other considerations.

cstamas
  • 6,707
  • 25
  • 42
0

all newer application think u use UTF-8.

utf-8 use slightly more space for store(2 bytes character) but more compatible for multi-language. so if ur database have alot of text inside, using locale preferable. but UTF-8 still more compatible.

arheops
  • 708
  • 1
  • 5
  • 13