News
Find below all the recent news from the site blog and from the list of pages that have been changed recently. You can also check planned community Events.
Activity 
Today
-
Testing (Dev) one hour ago
20 Apr
-
-
-
New document type in XAR extensions 20 Apr, 16:42
-
Filesystem store by default 20 Apr, 16:27
-
Attachments 20 Apr, 16:26
-
Release Notes for XWiki 10.3 20 Apr, 16:19
-
What are known issues with firefox add-ons? 20 Apr, 14:36
19 Apr
-
Release Notes for XWiki 10.3 19 Apr, 16:20
-
Edit protection 19 Apr, 14:10
18 Apr
-
-
-
10.3RC1 18 Apr, 18:34
-
Change002 18 Apr, 18:34
-
Priority between Notification Filters 18 Apr, 18:34
-
Change001 18 Apr, 18:34
-
Auto Notifications on changes 18 Apr, 18:34
-
Maven XAR Plugin (Dev) 18 Apr, 18:30
-
XAR Format Specifications (Extensions Wiki) 18 Apr, 18:23
-
Track: Contribute to the core (Dev) 18 Apr, 17:55
17 Apr
-
SVG Macro (Extensions Wiki) 17 Apr, 18:02
-
What are known issues with firefox add-ons? 17 Apr, 17:16
16 Apr
-
ReleasePlan10.3RC1 (Dev) 16 Apr, 18:37
-
Configuration 16 Apr, 14:47
-
Roadmap 16 Apr, 12:25
-
What are known issues with firefox add-ons? 16 Apr, 10:47
-
Testimonials 16 Apr, 08:52
15 Apr
-
Testing (Dev) 15 Apr, 21:17
-
-
-
From http://nielsmayer.com/xwiki/bin/view/fedora10/64bitJavaAppletIn64BitFirefox#Comments
For info on 6u14's new "Garbage First" GC and potential usefulness for use with java web apps, see: http://n2.nabble.com/Does-JDK6u14-%22Garbage-First-garbage-collector-%28G1%29%22-work-and-or-improve-Xwiki-performance-size-mem-locality--tp2344358p2344358.html or http://n2.nabble.com/forum/PrintPost.jtp?post=2344358 (cancel the print dialog: this gives you the complete message w/o extra crap).
Unfortunately, when running with
VM Arguments:
jvm_args: -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -Xms256m -Xmx768m -XX:PermSize=256m -XX:MaxPermSize=768m -Djava.awt.headless=true ...
java_command: org.apache.catalina.startup.Bootstrap startYou get a SIGSEGV (which obviates the whole point of garbage-collection):
A fatal error has been detected by the Java Runtime Environment:
SIGSEGV (0xb) at pc=0x0000000000e9c621, pid=13441, tid=114968912
JRE version: 6.0_14-b01
Java VM: OpenJDK 64-Bit Server VM (14.0-b10 mixed mode linux-amd64 )
Problematic frame:
V [libjvm.so+0x296621]The SIGSEGV happens because of new Garbage Collector, as invoked by "-XX:+UnlockExperimentalVMOptions -XX:+UseG1GC". It dies after running for less than an hour:
Current thread (0x000000004149f000): ConcurrentGCThread [stack: 0x0000000000000000,0x0000000000000000] [id=13448]
siginfo:si_signo=SIGSEGV: si_errno=0, si_code=1 (SEGV_MAPERR), si_addr=0x0000001600000050
...
elapsed time: 2916 secondsThis issue doesn't occur with the default GC invoked with
jvm_args: -Xms256m -Xmx768m -XX:PermSize=256m -XX:MaxPermSize=768m -Djava.awt.headless=true"I guess that's why this is an "Early Access" release.
-
-
-
I have installed xwiki.war in my machine, but with embty database and i try to import the xwiki-1.0-beta-1.xar file for default setting, but still did not work. In other words, i can not registr a new user or loging with Admin, admin loging details, do i miss simthing? please help
Regards,
adel
-
It wasn't necessarily when I was migrating XWiki to Resin.
But it was essential to create resin-web.xml near the web.xml:
<?xml version="1.0"?>
<web-app xmlns="http://caucho.com/ns/resin"
xmlns:sec="urn:java:com.caucho.security">
<multipart-form enable="false"/>
</web-app>Without this, one can't upload attachments. Apache Commons Fileupload is in conflict with Servlet API 3.0 implementation turned on in Resin by default.
-
To install on resin you need to override the XML parser / document factory.
Add the following to resin.conf
<system-property javax.xml.parsers.DocumentBuilderFactory=
"org.apache.xerces.jaxp.DocumentBuilderFactoryImpl"/>
<system-property javax.xml.parsers.SAXParserFactory=
"org.apache.xerces.jaxp.SAXParserFactoryImpl"/>Also, you will need to edit the web.xml and remove the XWikiDS element:
<resource-ref>
<description>DB Connection</description>
<res-ref-name>jdbc/XWikiDS</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref> -
Is it possible to use XWiki as a portlet in Liferay portal server (6.0)? I've tried to but Liferay refuses to registering the portlet properly.
I have deployed the XWiki WAR file into the Liferay deploy folder (Liferay runs on a Tomcat server). When deploying the deploy process throws an exception:
com.liferay.portal.kernel.deploy.hot.HotDeployException: Error registering portlets for xwiki-enterprise-web-3.0
at ...
Caused by: java.lang.ClassCastException: com.xpn.xwiki.web.XWikiPortlet cannot be cast to javax.portlet.PortletWhat else do I have to do to run XWiki as a portlet? Did anyone tried this too?
-
Hola Carlos,
I solved it by removing the file WEB-INF/lib/xmlParserAPIs-2.0.2.jar from the WAR file.
It seems that the XML-API is obsolete in this file and it is provided as well in other jars. -
Anybody successfully installed Xwiki based on ORACLE 10G database. I has created database XWIKI on ORACLE 10G with xwiki user(all privileges is granted), I copied correct version of JDBC driver in WEB-INFlib and modified hibernate.cfg.xml to point oracle database. The error sound something like this: 15:58:08,781 FATAL http-8080-Processor25 http://localhost:8080/xwiki/bin/login/XWiki/XWikiLogin DBCPConnectionProvider:configure:191 - Could not create a DBCP pool org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (Io exception: The Network Adapter could not establish the connection).....
Any sugestions will be usefull.... Thanks.
Ghita.
-
pour les français, voici de quoi démarrer pour la xwiki-1.0-beta-5 avec cette traduction du minimum: Si vous utilisez le package d'installation de Windows (.exe), il suffit de suivre les instructions. Ce dernier crée un raccourci pour démarrer/stopper XWiki. Si vous êtes sur une autre plateforme, récupérez le tar.gz et décompressez le dans le répertoire XWIKIHOME de votre choix. Cette archive procure scripts bat (windows) ou sh (linux) pour démarrer/stopper XWiki.
Une fois XWiki démarré allez sur http://localhost:8080/xwiki/bin/view/Main/WebHome et rendez vous sur le guide utilisateur pour apprendre comment utiliser XWiki. Pour changer le port, éditez le script de démarrage et changer 8080 par un autre nombre.
un peu plus haut dans les commentaires, on trouve le login/pass du super utilisateur, avec attention au respect de la casse (majuscules/minuscules) :
- login : Admin
- pass : admin
best regards
-
I have the next error in a typical installing:
INFO: Instalando aplicaciones web en trayectoria de contexto /xwiki desde URL file:/var/lib/tomcat5/webapps/xwiki 10-oct-2007 11:14:05 org.apache.catalina.core.StandardContext processTlds GRAVE: Error reading tld listeners javax.servlet.ServletException: Excepción durante el tratamiento de la TLD indicada por la trayectoria de recurso /WEB-INF/struts-logic.tld javax.servlet.ServletException: Excepción durante el tratamiento de la TLD indicada por la trayectoria de recurso /WEB-INF/struts-logic.tld at org.apache.catalina.startup.TldConfig.tldScanTld(TldConfig.java:549) at org.apache.catalina.startup.TldConfig.execute(TldConfig.java:301)
Any ideas??? Thank you in advanced.
-
Translation in french below.
Hello,
for information, the installation on Mac OS X is ok. Except when logging with theses :
- Admin
- admin
any idea why ?
Bonjour,
Pour info, l'installation sur Mac OS X se passe comme prévu. Sauf au moment de se connecter ces identifiants :
- Admin
- admin
donnent en retour le message suivant : "Nom d'utilisateur erroné" !?
Apparemment je ne suis pas le premier à rencontrer ce bug.
Quelqu'un a une idée de l'origine de ce bug ?
-
Hi. I am upgrading from 0.9. to 1.2. I tried to add the export feature to my 0.9 xwiki. I can choose a space to export, but the resulting xar file is empty. What can be wrong?
Tom
-
14 Apr
-
Performance 14 Apr, 01:51
-
Installation 14 Apr, 01:39
13 Apr
-
10.3RC1 13 Apr, 18:19
-
-
-
XWiki Days (Dev) 13 Apr, 11:33
-
-
-
Track: Understand XWiki core concepts (Dev) 13 Apr, 11:08
-
Onboarding (Dev) 13 Apr, 10:57
-
Track: Contribute to the core (Dev) 13 Apr, 10:53
-
Contributing (Dev) 13 Apr, 10:50
12 Apr
-
Release Notes for XWiki 10.2 12 Apr, 17:21
-
Test Reports 12 Apr, 17:19
-
ReleasePlan10.3RC1 (Dev) 12 Apr, 14:10
-
Manual Test Report for XWiki 10.2 12 Apr, 11:37
-
Download Form Feedback 12 Apr, 09:37
11 Apr
-
Creating an Extension 11 Apr, 14:32
-
Distribution Wizard 11 Apr, 11:14
-
Chart.js Integration (Extensions Wiki) 11 Apr, 09:57
10 Apr
-
Change003 10 Apr, 23:32
"Cache sizes, xwiki.store.cache.capacity=1000"
After I changed to that value, my website was dramatically slower than before. With the standard value "100" my website runs just fine...