Skip to content
ULB Podcast edited this page Jun 3, 2014 · 1 revision

Usage of UTF8

UTF8 Charset is used by default for the application. In some cases, you may encounter display problems due to accents in the web interfaces. To fix that bug, we recommend to set the default charset as UTF8 in the apache.conf file.

How to set the default charset for Apache ?

Add this to your .htaccess:

IndexOptions +Charset=UTF-8

Or, if you have administrator rights, you could set it globally by editing httpd.conf and adding:

AddDefaultCharset UTF-8

(You can use AddDefaultCharset in .htaccess too, but it won’t affect Apache-generated directory listings that way.)