Quote:
Originally Posted by eustachy Hello
I have problem with java version. I have the same information in log, and admin panel. I've change to
export JAVA_HOME=/opt/zimbra/java
or
export JAVA_HOME=/opt/zimbra/java/jre
in 2 lines in both files /opt/Funambol/bin/funambol and /etc/init.d funambol and I still have problem??
Any suggestions?
Thanks
Raf |
in my /etc/init.d/funambol I have
Code:
# Setting the JAVA_HOME to the JRE in the bundle if not set or if not correctly set
if [ -z "$JAVA_HOME" ]; then
export JAVA_HOME=$FUNAMBOL_HOME/tools/jre-1.5.0/jre
else
if [ ! -f "$JAVA_HOME/bin/java" ]; then
export JAVA_HOME=$FUNAMBOL_HOME/tools/jre-1.5.0/jre
fi
fi (which is the original Funambol code, untouched)