Originally posted by oprocopio
View Post
Problems with open-xchange-gui
Collapse
X
-
No, the install instruction is OK. It seems like you already have any other XSLT jar/installation in your classpath which conflicts with the saxon package.Last edited by Stefan Preuss; 03-13-2007, 06:03 PM.
-
Guest repliedI build the file with:
(maybe a error in the installinstructions?)Code:ant -lib /opt/open-xchange/lib/ deploy
now seems everything is ok.
orlando
Leave a comment:
-
Guest repliedthank you for your answer.
I have downloaded this file and copied saxon8.jar to /opt/open-xchange/lib.
still the same error.
I have also updated to ant 1.7
do I forgot something??
orlando
Leave a comment:
-
This problem has been already posted hereOriginally posted by oprocopio View PostI hope someone can also help me...
when I compile the gui I recieve the following error-message
I try to install OX on ubuntu 6.10Code:Buildfile: build.xml css: [xslt] Processing /root/ox/open-xchange-gui/style.xml to /root/ox/open-xchange-gui/build/border.css [xslt] Loading stylesheet /root/ox/open-xchange-gui/css.xsl BUILD FAILED /root/ox/open-xchange-gui/build.xml:57: javax.xml.transform.TransformerFactoryConfigurationError: Provider net.sf.saxon.TransformerFactoryImpl not found
thanks, orlando
Leave a comment:
-
Guest repliedI hope someone can also help me...
when I compile the gui I recieve the following error-message
I try to install OX on ubuntu 6.10Code:Buildfile: build.xml css: [xslt] Processing /root/ox/open-xchange-gui/style.xml to /root/ox/open-xchange-gui/build/border.css [xslt] Loading stylesheet /root/ox/open-xchange-gui/css.xsl BUILD FAILED /root/ox/open-xchange-gui/build.xml:57: javax.xml.transform.TransformerFactoryConfigurationError: Provider net.sf.saxon.TransformerFactoryImpl not found
thanks, orlando
Leave a comment:
-
But what about the USE-flags for cyrus, apache2, mysql, ...Originally posted by lenda View Post@Daniel Halbe
Just followed the Installation-Docs. Tested open-xchange on my privat computer and changed no USE-flags.
Daniel
Leave a comment:
-
@Daniel Halbe
Just followed the Installation-Docs. Tested open-xchange on my privat computer and changed no USE-flags.
I will check the installation on a fresh gentoo
Ok... quick and dirty!!!
-> /etc/conf.d/apache2: APACHE2_OPTS="... -D JK"
-> /etc/apache2/jk-workers.properties: not changed
-> /etc/apache2/modules.d/88_mod_jk.conf: added "jkMount /ajax/* ajp13" and "jkMount /servlet/* ajp13"
-> /etc/imapd.conf: see Inst-Docs
-> /etc/pam.d/imap: see Inst-Docs (just the two entrys...)
compile open-xchange with the parameters in the Docs
compile open-xchange-gui with -Dhtdoc=/var/www/localhost/htdocs/open-xchange (before compiling rename /usr/.../xalan.jar to something else, compile, rename it back to xalan.jar)
start open-xchange-admin and open-xchange
thats for me... but will check it on a fresh install...
David
Leave a comment:
-
@lenda
Great!
Please provide a short documentation what you installed, which USE-flags and so on. We have some experienced Gentoo guys here, too who will review it so we can create official documentation together with you
Thanks
Daniel
Leave a comment:
-
Xalan is an XSLT processor which supports XSLT 1.0. The GUI requires XSLT 2.0 and uses Saxon to process it. The error was that Ant chooses the wrong XSLT processor when both are available in the classpath.
Leave a comment:
-
Guest repliedAllmost there ... [SOLVED]
I moved all the xalan files to another directoryOriginally posted by tronn View PostOn my system Centos 4.3 I have successfully compiled open-xchange and open-xchange-admin, set db only I need to do is compile the gui, but im not able to do that, im using ant ant-optional 1.5-2.5, the error msg is get is as follow
Buildfile: build.xml
BUILD FAILED
file:/home/OX6/open-xchange-gui/build.xml:61: The <filelist> data type doesn't support the nested "file" element.
Total time: 0 seconds
Tronn
Downloaded the latest ant from ant.apache.org to /tmp
extracted the files, tar zxvf ant-1.7.0.tar.gz
mv apache-ant-1.7.0 ant [renamed the directory ]
mv ant/ /usr/local/ [ moved the ant directory to /usr/local/ant ]
export ANT_HOME=/usr/local/ant [ set the enviroment ]
export PATH=$PATH:/usr/local/ant/bin [ set the new path to ant ]
then I compiled the open-xchange-gui as described in the guide
This worked for me, hope it could help others with the same problem
Tronn
PS Do I need the xalan files ?
Leave a comment:
-
Guest repliedThat did it for me too, tnxOriginally posted by arcade View PostI found out the same problem under Fedora Core and solved it removing the xalan-j2 jars from the classpath (on Fedora just move the /usr/share/java/xalan-j2* files to somewhere else when you are compiling).
Not sure about Gentoo, but it worked for me.
.
Now all we need to find out is whether Xalan is required to build this stuff normally (cause according to what I found on Google that means the build.xsl is faulty).
Leave a comment:
-
Guest repliedAllmost there ...
On my system Centos 4.3 I have successfully compiled open-xchange and open-xchange-admin, set db only I need to do is compile the gui, but im not able to do that, im using ant ant-optional 1.5-2.5, the error msg is get is as follow
Buildfile: build.xml
BUILD FAILED
file:/home/OX6/open-xchange-gui/build.xml:61: The <filelist> data type doesn't support the nested "file" element.
Total time: 0 seconds
Tronn
Leave a comment:
-
I found out the same problem under Fedora Core and solved it removing the xalan-j2 jars from the classpath (on Fedora just move the /usr/share/java/xalan-j2* files to somewhere else when you are compiling).Originally posted by RedNalie View PostThe livegrid.css error seems to have returned, and another glitch has presented itself. I've installed all the ant-packages that I could find (this time under Gentoo), so I haven't got a clue where it relates to...Code:build page: [xslt] Processing /tmp/open-xchange-gui/html/index.xml to /tmp/open-xchange-gui/index.html [xslt] Loading stylesheet /tmp/open-xchange-gui/build.xsl [xslt] : Fatal Error! org.xml.sax.SAXException: Can not resolve namespace prefix: #all Cause: org.xml.sax.SAXException: Can not resolve namespace prefix: #all [xslt] Failed to process /tmp/open-xchange-gui/html/index.xml BUILD FAILED /tmp/open-xchange-gui/build.xml:89: The following error occurred while executing this line: /tmp/open-xchange-gui/build.xml:45: Fatal error during transformation Total time: 0 seconds
Not sure about Gentoo, but it worked for me.
Leave a comment:
-
Guest repliedOriginally posted by Daniel Halbe View PostI'm performing various Installations on Debian Etch and can not reproduce this problem, too.
@RedNalie
You're using saxon8-9-0-2j as mentioned I hope?
All other .jars have the Versionnumbers mentioned in wiki, too?
DanielIf everything works I might even write an ebuild for the entire proces (first have to learn how thoughOriginally posted by Daniel Halbe View PostHmm, no idea because I'm no developer. Perhaps the developers can help you tomorrow.
But it would be fantastic if you could write a short documentation when you have the ox running - which ebuilds you installed, the use flags and the configs. Fast done for you but will speed up the work of all other Gentoo Users
Daniel
). I will certainly document things for others when I get this to work.
Leave a comment:
Leave a comment: