$xwiki API have an "sync" equivalent command (with groovy)?
or "sleep"?
My scheduled job generate some crash of tomcat:
01-Feb-2017 23:16:40.771 SEVERE [http-nio-8080-ClientPoller-0] org.apache.tomcat.util.net.NioEndpoint$Poller.run
java.lang.OutOfMemoryError: Java heap space
Thxs.
--------------------------------------------
En date de : Mer 1.2.17, Pascal BASTIEN <pbasnews-xwiki(a)yahoo.fr> a écrit :
Objet: timeout in job scheduler?
À: "XWiki Users" <users(a)xwiki.org>
Date: Mercredi 1 février 2017, 16h17
Hello,
I created a job scheduled in scheduler, but sometime my job
seem to be failed sometime.
In my groovy job I add some logging system: some text sent
to a xwiki page+save but didn't find interesting things.
Of course I have some loops (I things) in my script (to list
groups member):
Members =
xwiki.rightsmanager.getAllMembersNamesForGroup("${GroupName}")
//extrait les users du groupe
Members.each {
MyMember =
xwiki.getDocument(it)
I wonder, Is there a timeout associated to the script that
runs and is there feedback in the event of an error (or a
way to activate logs for job scheduled)?
Thxs
Pascal BASTIEN
Hello,
I created a job scheduled in scheduler, but sometime my job seem to be failed sometime.
In my groovy job I add some logging system: some text sent to a xwiki page+save but didn't find interesting things.
Of course I have some loops (I things) in my script (to list groups member):
Members = xwiki.rightsmanager.getAllMembersNamesForGroup("${GroupName}") //extrait les users du groupe
Members.each {
MyMember = xwiki.getDocument(it)
I wonder, Is there a timeout associated to the script that runs and is there feedback in the event of an error (or a way to activate logs for job scheduled)?
Thxs
Pascal BASTIEN
Noticed this in xwiki.cfg, diff between 8.4.4 and 9.0:
102c105
< # xwiki.store.migration.manager.hint=hibernate
---
> # xwiki.store.migration.manager.hint=hibernatehibernate
I am going to assume hibertnatehibernate is not the correct value there. :)
Let me know if you want a bug filed.
Thanks,
Craig
Hello,
We must change our server to use xwiki. Do you have simple recommandations about requirement ( CPU, specialy RAM because server provided is a VM, ...) to have for a fast xwiki?
On this server I will install:
- debian stable Jessie
- Tomcat 8.5.5 version probably
- postgreSQL server
- xwiki attachment stored in the filesystem
- solr server embedded probably
Thxs.
Of course I will recheck
http://platform.xwiki.org/xwiki/bin/view/AdminGuide/InstallationTomcat
and http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Performances
Thxs.
Pascal B
The XWiki development team is proud to announce the availability of XWiki
9.0.
This release marks the start of the 9.x cycle and features mostly developer
and admin feature improvements. The most notable ones are the improved
handling of big attachments, filesystem Recycle Bin and CK Editor
improvements.
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/Data/XWiki/9.0
Thanks for your support
-The XWiki dev team
HI, I want to use xwiki for client-server access.
The thing is when I install the xwiki in server, and try to access/open in
client(my laptop) it can't be open. Does it require me to install the java?
Before forgot, my server is using windows xp.
Somebody help
--
View this message in context: http://xwiki.475771.n2.nabble.com/Use-xwiki-for-local-server-tp7602606.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
I am trying to follow along while modifying the code to reflect my app location which is “Corrections.2016” and it all seems to work fine until I try to do the custom form creation, which when submitted takes me to an "about blank” page. Any thoughts on what I did wrong?
#if("$!targetDocName" != '' && $xwiki.exists($targetDocName))
{{warning}}The target document already exists. Please choose a different name, or [[view the existing document>>$targetDocName]]{{/warning}}
#elseif("$!targetDocName" != '')
{{warning}}You don't have permission to create that document{{/warning}}
#end
{{html}}
<form action="" id="newdoc" method="post">
<div>
<input type="hidden" name="parent" value="${doc.fullName}"/>
<input type="hidden" name="template" value="Corrections.2016.2016Template"/>
<input type="hidden" name="sheet" value="1"/>
<input type="hidden" name="spaceName" value="Corrections.2016"/>
Code Section: <input type="text" name="docName" value="Enter the code section here" class="withTip" size="50"/>
<span class="buttonwrapper"><input type="submit" value="Create this code section" class="button"/></span>
</div>
</form>
{{/html}}
Regards,
Jesse Bright