Version 13.1 by Guillaume Fenollar on 2011/01/18

Hide last authors
Guillaume Fenollar 13.1 1 {{box cssClass="floatinginfobox" title="**Contents**"}}
2 {{toc/}}
3 {{/box}}
slauriere 1.1 4
Vincent Massol 1.2 5 Here is below the configuration for UTF-8. Note that this is valid for XWiki 1.0 b5 and above. Easier configuration might be provided for upcoming releases.
slauriere 1.1 6
Silvia Macovei 12.2 7 = XWiki encoding =
slauriere 1.1 8
bitman09 1.8 9 Change the charset enconding in these XWiki files :
10
Silvia Macovei 12.1 11 * **web.xml**: locate the filter class com.xpn.xwiki.web.SetCharacterEncodingFilter and change it to UTF-8. It should look like this
slauriere 1.1 12
Silvia Macovei 12.1 13 {{code language="xml"}}
bitman09 1.10 14 <filter>
bitman09 1.9 15 <filter-name>Set Character Encoding</filter-name>
16 <filter-class>com.xpn.xwiki.web.SetCharacterEncodingFilter</filter-class>
17 <init-param>
18 <param-name>encoding</param-name>
19 <param-value>UTF-8</param-value>
20 </init-param>
bitman09 1.10 21 </filter>
Silvia Macovei 12.1 22 {{/code}}
bitman09 1.8 23
Silvia Macovei 12.1 24 * **xwiki.cfg** : locate the line containing xwiki.encoding and change it to look like this
25
26 {{code}}
bitman09 1.9 27 xwiki.encoding = UTF-8
Silvia Macovei 12.1 28 {{/code}}
bitman09 1.9 29
Silvia Macovei 12.2 30 = HTML encoding =
bitman09 1.9 31
Silvia Macovei 12.1 32 Change the HTML encoding in XWiki through Administration ~-~-> Preferences ~-~-> Presentation ~-~-> HTTP Meta information.
LuisArias 11.1 33
Silvia Macovei 12.1 34 {{warning}}
35 This is Administration ~--> Presentation then look for Header ~--> HTTP Meta Information in more recent XWiki default wikis
36 {{/warning}}
LuisArias 11.1 37
Silvia Macovei 12.1 38 Inside this textbox locate the **Content-type** meta tag and make it look like this, changing the encoding to UTF-8
39
40 {{code language="xml"}}
bitman09 1.14 41 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
Silvia Macovei 12.1 42 {{/code}}
43
44 {{warning}}
45 This step is not needed if you have the following. Instead that line can be left alone.
46 {{/warning}}
47
48 {{code language="xml"}}
LuisArias 11.1 49 <meta http-equiv="Content-Type" content="text/html; charset=$!xwiki.encoding" />
Silvia Macovei 12.1 50 {{/code}}
bitman09 1.10 51
Silvia Macovei 12.2 52 = Hibernate configuration =
bitman09 1.15 53
Silvia Macovei 12.1 54 Add the following lines in the ##hibernate.cfg.xml## file:
55
56 {{code language="xml"}}
Sergiu Dumitriu 1.6 57 <property name="connection.useUnicode">true</property>
58 <property name="connection.characterEncoding">UTF-8</property>
Silvia Macovei 12.1 59 {{/code}}
Sergiu Dumitriu 1.6 60
Silvia Macovei 12.2 61 = MySQL configuration =
slauriere 1.1 62
Silvia Macovei 12.1 63 It's common practice that the MySQL configuration file, in *nix systems is located in /etc/mysql/my.cnf
64
65 {{code}}
slauriere 1.1 66 [client]
67 default-character-set=utf8
68 [mysqld]
69 default-character-set=utf8
70 character-set-server = utf8
Guillaume Fenollar 13.1 71 collation-server = utf8_bin
Silvia Macovei 12.1 72 {{/code}}
slauriere 1.1 73
Silvia Macovei 12.2 74 = Servlet Container =
slauriere 1.1 75
Silvia Macovei 12.2 76 == Jetty ==
Silvia Macovei 12.1 77
78 {{code}}echo off
slauriere 1.1 79 rem set LANG=fr_FR.ISO8859-1
80 set LANG=en_US.UTF-8
81 set JETTY_PORT=8080
82 set JETTY_HOME=.
Silvia Macovei 12.1 83 java %JAVA_OPTS% -Djetty.port=%JETTY_PORT% -Djetty.home=%JETTY_HOME% -Dfile.encoding=UTF-8 -jar %JETTY_HOME%/start.jar{{/code}}
machac 1.4 84 Instead of config system variable LANG you can use JVM properties
85
Silvia Macovei 12.1 86 {{code}}
machac 1.4 87 -Duser.language=en
88 -Duser.country=US
Silvia Macovei 12.1 89 {{/code}}
machac 1.4 90
91 in server startup script.
92
Silvia Macovei 12.2 93 == Tomcat ==
aanno 3.1 94
95 In order to enable UTF-8 in tomcat, you have to add
96
Silvia Macovei 12.1 97 {{code}}
Sergiu Dumitriu 6.1 98 URIEncoding="UTF-8"
Silvia Macovei 12.1 99 {{/code}}
aanno 3.1 100
Silvia Macovei 12.1 101 to each connector enabled/used in **conf/server.xml**. For example the non-SSL HTTP Connector should read:
aanno 3.1 102
Silvia Macovei 12.1 103 {{code language="xml"}}
aanno 3.1 104 <Connector port="8080" maxHttpHeaderSize="8192"
105 maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
106 enableLookups="false" redirectPort="8443" acceptCount="100"
107 connectionTimeout="20000" disableUploadTimeout="true"
Sergiu Dumitriu 6.1 108 URIEncoding="UTF-8"/>
Silvia Macovei 12.1 109 {{/code}}
aanno 3.1 110
Silvia Macovei 12.1 111 {{warning}}
112 In case you're using AJP to connect Tomcat and httpd, make sure you add this attribute to the AJP connector.
113 {{/warning}}
cypromis 9.1 114
Silvia Macovei 12.2 115 == [[Glassfish>>http://www.glassfish.org/]] ==
cypromis 9.1 116
Silvia Macovei 12.1 117 To run xwiki with UTF-8 in Glassfish you will need to recreate the xwiki-enterprise.war file and do a change to the glassfish config. First, in the Administration GUI under Domain => General => Locale enter en_US.UTF-8.
cypromis 9.1 118
Silvia Macovei 12.1 119 Now you will need to add all the aforementioned changes from this document to the files in the war file, create a new warfile, and deploy that one to you glassfish installations. This is required due to the fact that Glassfish will not accept changes to a deployed web.xml file. So you need to deploy a ready changed web.xml file inside your war file becuase all subsequent changes to the deployed web.xml file in the filesystem are totally ignored.
120
cypromis 9.1 121 Create a new directory that we will use as a temporary place to edit our war file
Silvia Macovei 12.1 122
123 {{code}}
124 mkdir xwikitmp
125 {{/code}}
126
cypromis 9.1 127 Unpack the warfile:
Silvia Macovei 12.1 128
129 {{code}}
130 cd xwikitemp;jar xvf ../xwiki-enterprise-web-1.5.war
131 {{/code}}
132
cypromis 9.1 133 Edit the files as mentioned in the beginning of this article:
Silvia Macovei 12.1 134
cypromis 9.1 135 * wiki.cfg
136 * web.xml
137 * hibernate.cfg.xml
Silvia Macovei 12.1 138
cypromis 9.1 139 Now lets create a new warfile which contains all the changes:
140
Silvia Macovei 12.1 141 {{code}}
142 jar cvf ../xwiki-enterprise-web-local-1.5.war .
143 {{/code}}
144
cypromis 9.1 145 Now you can deploy your new .war file to Glassfish and it will have all the changes in it and wll be correctly deployed.
146
Silvia Macovei 12.2 147 = System config =
cypromis 9.1 148
slauriere 1.1 149 Add the following variables to your system
150
Silvia Macovei 12.1 151 {{code}}
WilliamLesguillier 2.1 152 LANG = en_US.UTF-8
Silvia Macovei 12.1 153 {{/code}}
slauriere 1.1 154
155 Credits: http://www.nabble.com/Re%3A-problem-with-Chinese-p9547507.html

Get Connected