Sergiu Dumitriu wrote:
I guess it's not a encoding issue, although I once
had the same
problem and it was caused by the encoding.
- Does the page load fine without the mod_jk? (access the tomcat port
directly)
Hi Sergiu and all the xwiki users :)
I directly tried with apache and mod_jk.
- Does your mod_jk config file contain something
unusual?
here are my conf files and only the interestings parts
## tomcat / server.xml ###
<Server port="8005" shutdown="SHUTDOWN">
<Listener
className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" />
<Listener
className="org.apache.catalina.storeconfig.StoreConfigLifecycleListener"/>
<Service name="Catalina">
<Connector port="8009"
enableLookups="false" redirectPort="8443"
protocol="AJP/1.3" />
<Engine name="tomcat-apache"
defaultHost="m6prg.ufr-info-p7.jussieu.fr">
<Host name="m6prg.ufr-info-p7.jussieu.fr"
appBase="/var/lib/tomcat5.5/webapps/xwiki"
unpackWARs="false" autoDeploy="false">
<Context path="/xwiki"
docBase="/var/lib/tomcat5.5/webapps/xwiki" debug="0"
reloadable="true"/>
</Host>
</Engine>
</Service>
</Server>
## apache / apache2.conf
JkWorkersFile /etc/apache2/workers.properties
JkLogFile /var/log/apache2/mod_jk.log
JkLogLevel warn
## apache / xwiki conf
JkMount /xwiki/* worker1
## mod_jk / workers.properties
workers.tomcat_home=/usr/share/tomcat5.5
workers.java_home=/usr/lib/jvm/java-1.5.0-sun
ps=/
worker.list=worker1
worker.worker1.port=8009
worker.worker1.host=localhost
worker.worker1.type=ajp13
worker.worker1.lbfactor=1
worker.loadbalancer.type=lb
worker.loadbalancer.balanced_workers=worker1
- Do your pages contain special symbols outside the
normal ASCII range?
I don't think so, and in fact all the pages are affected, so
I don't
think there are symbols outside ASCII in every page :)
- What's the operating system codepage?
##
/etc/locale.gen
en_US.UTF-8 UTF-8
fr_FR.ISO-8859-1 ISO-8859-1
fr_FR ISO-8859-1
fr_FR.UTF-8 UTF-8
fr_FR@euro ISO-8859-15
##printenv | grep LANG
LANG=fr_FR
I managed to put xwiki behind mod_jk, and it's working fine.
So I put all this stuff, maybe U foind something weird, before I try to
access the wiki by tomcat directly (HTTP/1.1, default port 8180)
Thanks.
Julien