The XWiki development team is proud to announce the availability of
XWiki 6.4 Release Candidate 1.
This release brings many improvements to the Mail Application and its
API, including support for mail throttling. A new 'Wikis' category is
available in the administration that groups together sections with
wiki-related configuration options. Other smaller improvements (23)
and a few bug fixes (15) complete this release. Would be great if you
can give it a try and report whatever issues you may find so that we
can fix them before the 6.4 final release.
You can download it here: http://www.xwiki.org/xwiki/bin/view/Main/Download
Make sure to review the release notes:
http://www.xwiki.org/xwiki/bin/view/ReleaseNotes/ReleaseNotesXWiki64RC1
Thanks
-The XWiki dev team
Je serai absent(e) à partir du 15/01/2015 de retour le 19/01/2015.
je suis en congés.
Je répondrai à vos messages dès mon retour.
En cas de problème technique, veuillez contacter SYNOX au 05 67 34 66 56.
Merci
Hi.
I have googled this a bit but have found no clear instructions either way.
I have XWiki 6.2.3 installed from the graphical Windows native installer.
Is the upgrade procedure just to grab the latest version of the EXE and run
it?
--
Regards/Mvh
Daniel Lundh
Hi,
I use XWiki 6.3 on ubuntu 14.04 LTS using Tomcat 7 and MySQL (XWiki .deb version).
I want to know how to log some specific stuff like user creation or registration, pages modification, login/logout, forbidden acces to a page...
I understand that i can do it with the administration interface of the wiki or by editing the logback.xml file. But i can't find any information on which "Logger" i have to configure to log specific events.
For example, i found that if i set the "com.xpn.xwiki.user.impl.xwiki.MyFormAuthenticator" to INFO level, i can see failed and successful login in the catalina.out file. But for other specific action i don't know!
I tried some logger but with no result for what i want to log.
Thanks for help.
Hello,
I want to know if there are a wiki syntax to add an hyperlink to your own user profile in wiki syntax (without velocity/grovy tags).With velocity it is:{{velocity}}
Here your own profile : [[$context.user]]
{{/velocity}}
Thxs.
Pascal B
Does it work if you change...
{{context document="wiki1:Main.WebHome"}}#if
($hasEdit){{/context}}[[Wiki1>>wiki1:Main.WebHome]]#end
..to:
{{context document="wiki1:Main.WebHome"}}#if
($hasEdit)[[Wiki1>>wiki1:Main.WebHome]]#end{{/context}}
--
View this message in context: http://xwiki.475771.n2.nabble.com/Context-Macro-Broken-tp7593647p7593648.ht…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hello all,
after I changed my max upload size to 2Gb, and after having used the filesystem attachment, I thought it would be flawless to upload a 600 Mb but no. I get the following exception:
> Caused by: java.lang.OutOfMemoryError: Java heap space
> at java.util.Arrays.copyOf(Arrays.java:2786)
> at java.io.ByteArrayOutputStream.write(ByteArrayOutputStream.java:94)
> at org.apache.commons.io.output.ProxyOutputStream.write(ProxyOutputStream.java:90)
> at org.apache.commons.codec.binary.BaseNCodecOutputStream.flush(BaseNCodecOutputStream.java:116)
> at org.apache.commons.codec.binary.BaseNCodecOutputStream.write(BaseNCodecOutputStream.java:97)
> at org.apache.commons.io.IOUtils.copyLarge(IOUtils.java:1720)
> at org.apache.commons.io.IOUtils.copyLarge(IOUtils.java:1696)
> at org.apache.commons.io.IOUtils.copy(IOUtils.java:1671)
> at com.xpn.xwiki.internal.xml.XMLWriter.writeBase64(XMLWriter.java:182)
> at com.xpn.xwiki.doc.XWikiAttachment.toXML(XWikiAttachment.java:413)
> at com.xpn.xwiki.doc.XWikiAttachment.toStringXML(XWikiAttachment.java:340)
> at com.xpn.xwiki.doc.XWikiAttachmentArchive.updateArchive(XWikiAttachmentArchive.java:180)
> at com.xpn.xwiki.doc.XWikiAttachment.updateContentArchive(XWikiAttachment.java:718)
> at com.xpn.xwiki.store.XWikiHibernateStore.saveAttachment(XWikiHibernateStore.java:1528)
> at com.xpn.xwiki.store.XWikiHibernateStore.saveAttachmentList(XWikiHibernateStore.java:1496)
Could it be that this copy is indeed copying the whole file?
paul
Hello all,
I've implemented some client side page validation using JavaScript which works well, but I want to implement some simple checks on server side also. I know how to evaluate the values in my UI using velocity after the page is submitted, but how do I prevent the page from saving if my criteria isn't met?