-
Notifications
You must be signed in to change notification settings - Fork 19
UTF8 Charset
ULB Podcast edited this page Jun 3, 2014
·
1 revision
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.
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.)