Hello everyone,
Is it safe to remove a wiki from a wiki farm once information has been added
to it. Are there any additional steps that need to followed to make sure the
particular wiki is not referenced by the farm (in the app server, wiki or
the database).
Thank you for your time and consideration folks...
Greetings from Me and the GreenPepper Team,
With our stronger commitment to Open Source software, we are pleased to
announce the availability of the GreenPepper Plugin for XWiki.
GreenPepper is a tool integrating executable specifications and
automated functional testing into software development processes, thus
reducing any ambiguity related to the expression of needs between all
actors. Complete product information about GreenPepper is available at
http://www.greenpeppersoftware.com.
The GreenPepper XWiki plugin will allow you to quickly adopt the
executable specifications practices in your software development teams
while maintaining your specifications in the wiki you already know and
love! Furthermore, taking advantage of our starter program you can get a
license for your team for 10 $ !
To download the XWiki plugin, browse to
http://www.greenpeppersoftware.com/confluence/display/GPW/Download.
There are a standalone version ready to be use for those you just want
to evaluate GreenPepper. For those having an existing XWiki instance,
you can integrate GreenPepper easily by following
http://www.greenpeppersoftware.com/confluence/display/GPWODOC/XWiki+Install….
We hope you will enjoy the GreenPepper plugin for XWiki. If you have any
questions regarding GreenPepper, please feel free to contact me via
email (mailto:fdenommee AT pyxis-tech.com) or via the forum
(http://www.greenpeppersoftware.com/site/forums/list.page).
Francois D.
Hi,
we are currently studying XWiki Concerto. It uses xwiki enterprise 1.8.1. Is it possible to change the XE version it uses to the latest version? How?
Thanks in advance.
Allen
_________________________________________________________________
New Windows 7: Find the right PC for you. Learn more.
http://windows.microsoft.com/shop
I just installed a fresh install of xwiki 2.1.1
I had previously used v2.0 without any problems. I did the following to
install 2.1.1
- Got a backup of the mysql database folder and the tomcat webapps/xwiki
folder to backup the v2.0
- delete the database
- Created the database as shown below
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
+--------------------+
2 rows in set (0.13 sec)
mysql> create database xwiki
-> ;
Query OK, 1 row affected (0.08 sec)
mysql> grant all privileges on xwiki.* to xwiki(a)127.0.0.1 identified by
'xwiki'
-> ;
Query OK, 0 rows affected (0.34 sec)
mysql>
- I then updated the hibernate.cfg.xml file. All i did in this file is
comment out the hsqldb configuration and uncommented the mysql
configuration.
Here is my hibernate.cfg.xml file
---
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate
Configuration DTD//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<!-- Please refer to the installation guide on
http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Installationfor
configuring your
database. You'll need to do 2 things:
1) Copy your database driver JAR in WEB-INF/lib or in some shared
lib directory
2) Uncomment the properties below for your specific DB (and comment
the default
database configuration if it doesn't match your DB)
-->
<!-- Generic parameters common to all Databases -->
<property name="show_sql">false</property>
<property name="use_outer_join">true</property>
<property name="dbcp.defaultAutoCommit">false</property>
<property name="dbcp.maxActive">50</property>
<property name="dbcp.maxIdle">5</property>
<property name="dbcp.maxWait">30000</property>
<property name="dbcp.whenExhaustedAction">1</property>
<property name="dbcp.ps.whenExhaustedAction">1</property>
<property name="dbcp.ps.maxActive">20</property>
<property name="dbcp.ps.maxWait">120000</property>
<property name="dbcp.ps.maxIdle">20</property>
<!-- Without it, some queries fail in MS SQL. XWiki doesn't need
scrollable result sets, anyway. -->
<property name="jdbc.use_scrollable_resultset">false</property>
<!-- Configuration for the default database.
Comment out this section and uncomment other sections below if you
want to use another database.
Note that the database tables will be created automatically if they
don't already exist.
<property
name="connection.url">jdbc:hsqldb:file:database/xwiki_db;shutdown=true</property>
<property name="connection.username">sa</property>
<property name="connection.password"></property>
<property
name="connection.driver_class">org.hsqldb.jdbcDriver</property>
<property name="dialect">org.hibernate.dialect.HSQLDialect</property>
<property
name="connection.provider_class">com.xpn.xwiki.store.DBCPConnectionProvider</property>
<property name="connection.pool_size">2</property>
<property name="statement_cache.size">2</property>
<mapping resource="xwiki.hbm.xml"/>
<mapping resource="feeds.hbm.xml"/>
<mapping resource="activitystream.hbm.xml"/>-->
<!-- MySQL configuration.
Uncomment if you want to use MySQL and comment out other database
configurations.
We need to set the sql_mode to a less strict value, see
XWIKI-1945-->
<property
name="connection.url">jdbc:mysql://localhost/xwiki?useServerPrepStmts=false&useUnicode=true&characterEncoding=UTF-8&sessionVariables=sql_mode=''</property>
<property name="connection.username">xwiki</property>
<property name="connection.password">xwiki</property>
<property
name="connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="dialect">org.hibernate.dialect.MySQLDialect</property>
<property
name="connection.provider_class">com.xpn.xwiki.store.DBCPConnectionProvider</property>
<property name="connection.pool_size">2</property>
<property name="statement_cache.size">2</property>
<mapping resource="xwiki.hbm.xml"/>
<mapping resource="feeds.hbm.xml"/>
<mapping resource="activitystream.hbm.xml"/>
<!-- HSQLDB configuration.
Uncomment if you want to use HSQLDB and comment out other database
configurations.
<property
name="connection.url">jdbc:hsqldb:file:/some/path/xwikidb;shutdown=true</property>
<property name="connection.username">sa</property>
<property name="connection.password"></property>
<property
name="connection.driver_class">org.hsqldb.jdbcDriver</property>
<property name="dialect">org.hibernate.dialect.HSQLDialect</property>
<property
name="connection.provider_class">com.xpn.xwiki.store.DBCPConnectionProvider</property>
<property name="connection.pool_size">2</property>
<property name="statement_cache.size">2</property>
<mapping resource="xwiki.hbm.xml"/>
<mapping resource="feeds.hbm.xml"/>
<mapping resource="activitystream.hbm.xml"/>
-->
<!-- PostgreSQL configuration.
Uncomment if you want to use PostgreSQL and comment out other
database configurations.
<property name="connection.url">jdbc:postgresql:xwiki</property>
<property name="connection.username">xwiki</property>
<property name="connection.password">xwiki</property>
<property
name="connection.driver_class">org.postgresql.Driver</property>
<property
name="dialect">org.hibernate.dialect.PostgreSQLDialect</property>
<property
name="connection.provider_class">com.xpn.xwiki.store.DBCPConnectionProvider</property>
<property name="connection.pool_size">2</property>
<property name="statement_cache.size">2</property>
<mapping resource="xwiki.hbm.xml"/>
<mapping resource="feeds.hbm.xml"/>
<mapping resource="activitystream.hbm.xml"/>
-->
<!-- Oracle configuration.
Uncomment if you want to use Oracle and comment out other database
configurations.
Note: the 2 properties named
"hibernate.connection.SetBigStringTryClob" and
"hibernate.jdbc.batch_size". They are required to tell Oracle to
allow CLOBs larger than
32K.
<property name="connection.url">jdbc:oracle:thin:@localhost
:1521:XE</property>
<property name="connection.username">xwiki</property>
<property name="connection.password">xwiki</property>
<property
name="connection.driver_class">oracle.jdbc.driver.OracleDriver</property>
<property
name="dialect">org.hibernate.dialect.Oracle10gDialect</property>
<property
name="connection.provider_class">com.xpn.xwiki.store.DBCPConnectionProvider</property>
<property name="connection.pool_size">2</property>
<property name="statement_cache.size">2</property>
<property
name="hibernate.connection.SetBigStringTryClob">true</property>
<property name="hibernate.jdbc.batch_size">0</property>
<mapping resource="xwiki.oracle.hbm.xml"/>
<mapping resource="feeds.oracle.hbm.xml"/>
<mapping resource="activitystream.hbm.xml"/>
-->
<!-- Derby configuration.
Uncomment if you want to use Derby and comment out other database
configurations.
<property
name="connection.url">jdbc:derby:/some/path/xwikidb;create=true</property>
<property
name="connection.driver_class">org.apache.derby.jdbc.EmbeddedDriver</property>
<property name="dialect">org.hibernate.dialect.DerbyDialect</property>
<property
name="connection.provider_class">com.xpn.xwiki.store.DBCPConnectionProvider</property>
<property name="connection.pool_size">2</property>
<property name="statement_cache.size">2</property>
<mapping resource="xwiki.derby.hbm.xml"/>
<mapping resource="feeds.hbm.xml"/>
<mapping resource="activitystream.hbm.xml"/>
-->
</session-factory>
</hibernate-configuration>
----
I tried to launch xwiki via http://localhost:8080/xwiki and i got this error
on the browser..
HTTP Status 500 -
------------------------------
*type* Exception report
*message*
*description* *The server encountered an internal error () that prevented it
from fulfilling this request.*
*exception*
javax.servlet.ServletException: com.xpn.xwiki.XWikiException: Error
number 3 in 0: Could not initialize main XWiki context
Wrapped Exception: Error number 3001 in 3: Cannot load class
com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager
from param xwiki.store.migration.manager.class
Wrapped Exception: Error number 0 in 3: Exception while hibernate execute
Wrapped Exception: could not execute query
org.apache.struts.action.RequestProcessor.processException(RequestProcessor.java:535)
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:433)
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:152)
com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117)
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68)
com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:295)
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)
*root cause*
com.xpn.xwiki.XWikiException: Error number 3 in 0: Could not
initialize main XWiki context
Wrapped Exception: Error number 3001 in 3: Cannot load class
com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager
from param xwiki.store.migration.manager.class
Wrapped Exception: Error number 0 in 3: Exception while hibernate execute
Wrapped Exception: could not execute query
com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:341)
com.xpn.xwiki.XWiki.getXWiki(XWiki.java:402)
com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:135)
com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:115)
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
com.xpn.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:152)
com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:117)
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68)
com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:295)
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)
*note* *The full stack trace of the root cause is available in the Apache
Tomcat/6.0.20 logs.*
*Any cluses as to what i need to do to get it to work?
*
------------------------------
Apache Tomcat/6.0.20
Sorry, my mail reader isn't quite cooperating and I missed that one.
If possible, could I change it to 'mobilemindset.myxwiki.org'? I've been
reviewing the article content I want to use it for and it will cover more
than just coding.
Sorry for the inconvenience. If it's too late to change it, that's OK.
Thanks again.
As i sais in a previous mail:
> You can access your new wiki on http://mobilecoder.myxwiki.org
> I assumed you did want "mobilecoder" as wiki name since it was the
only thing related to that in your mail.
On Thu, Jan 7, 2010 at 05:34, T.J. Young <tjy.young(a)gmail.com> wrote:
> Not sure if my last reply went through, but meant to follow up with my
> username, from my original request for a hosted wiki.
>
> My username is tjyoung
>
> Thanks
>
> (Any guidelines/limitations on what subdomain name to use for the URL? Can
I
> just pick one?)
>
Hi.
Is the XWiki Watch application compatible with most recent platform ?
It is very unclear from the app's pages which is the most recent version
supported.
Thanks in advance.
Best regards,
--
Olivier BERGER <olivier.berger(a)it-sudparis.eu>
http://www-public.it-sudparis.eu/~berger_o/ - OpenPGP-Id: 1024D/6B829EEC
Ingénieur Recherche - Dept INF
Institut TELECOM, SudParis (http://www.it-sudparis.eu/), Evry (France)
Hi,
I'm trying to get livetable filtering working however I'm having trouble figuring out what objects/properties are available in the $filterfrom and $filterwhere parameters of the gridresultwithmacro() macro contained in the XWiki.LiveTableResultsMacros document.
I'm trying to filter the livetable to display only records where the "title" field is set to "test" but setting the $filterwhere parameter to " and obj.name='title' and obj.value='test'" does not seem to work and I'm having trouble finding any documentation etc to find out what format these where clauses should be in.
The closest documentation that ive been able to find is at the bottom of the following page http://dev.xwiki.org/xwiki/bin/view/Drafts/XWikiGridComponentTutorial however it doesnt give much clues as to what format the $filterwhere and $filterfrom parameters (3rd and 4th parameter) of the gridresultwithmacro() macro should be in.
The livetable displays all records correctly if I leave the $filterfrom and $filterwhere parameters blank.
Can anyone offer any hints or point me to any relevant documentation?
Thanks,
Radek Rekas
Not sure if my last reply went through, but meant to follow up with my
username, from my original request for a hosted wiki.
My username is tjyoung
Thanks
(Any guidelines/limitations on what subdomain name to use for the URL? Can I
just pick one?)
On Sun, Jan 3, 2010 at 8:08 PM, T.J. Young <tjy.young(a)gmail.com> wrote:
> Hi,
>
> Was wondering if/how I could create my own wiki hosted on the myxwiki
> network? I'm looking at creating a new developer portal/resource site for
> mobile application developers. Mostly text content, articles, code samples
> etc. I've looked at other services like Ning and Blogger but they are pretty
> limited. If it works out, I'll likely look into hosting it properly.
>
> Thanks!
>
I am trying to setup Workspaces to compare with an Enterprise (v2.1)
installation
I notice that the LDAP support is not there - the jar versions for
Workspace are 1.4
LDAP is a feature I definitely need...
Any idea when workspaces will use the latest version of Enterprise?
regards,
- arp