I would like to start a xWiki about "Green Lawns": reel mowers, propane powered mowers and other subjects about organic lawns and landscaping.
note: I am planning to start a business in this field, but I can make the wiki strictly about information people can use and doesn't bennefit me or my business, except an occasional link. I just think it's important for people to be exposed to information on ways to have a organic lawn and garden.
I'm also looking to try out different wiki software to find one that is the easiest to use but is still flexible.
Randy
Hello!
I have a question according to the tree view in xwiki. Is there a possibility to change the velocity code that I can display the treeview of a single space? I didn´t find anything according to this topic.
Thanks for your help!
Florian
Hi all,
I need help with installation...
I'm trying to get xwiki running on:
RHEL 6 x64...
JDK 6 latest...
Mysql 5.1.52...
Tomcat 7.0.14
I've followed the admin guide as near as possible... The deviations I've
made are..
created my db as 'testxwiki' instead of just xwiki...
modified xwiki.db=testxwiki (this was just a stab in the dark - not sure
I need to change this)
made appropriate modifications to the jdbc url in hibernate.cfg.xml...
I've varified that I can connect to the database using:
mysql -uxwiki -psome_password testxwiki
and show tables returns the empty set... xwiki / hibernate is supposed
to create the initial schema on startup right (less indexes)?
A more complete catalina.out snip is below but essentially I'm getting...
FATAL store.DBCPConnectionProvider - Could not create a DBCP pool.
There is an error in the hibernate configuration file, please review it.
Unfortunately I have been through this file many many times... and I
just don't see anything wrong with it...
I also get some interesting results when I stop tomcat after attempting
to browse the xwiki site...
SEVERE: The web application [/xwiki] registered the JDBC driver
[com.mysql.jdbc.Driver] but failed to unregister it when the web
application was stopped. To prevent a memory leak, the JDBC Driver has
been forcibly unregistered.
May 26, 2011 2:22:37 AM org.apache.catalina.loader.WebappClassLoader
clearReferencesThreads
SEVERE: The web application [/xwiki] appears to have started a thread
named [EvictionTimer-0] but has failed to stop it. This is very likely
to create a memory leak.
May 26, 2011 2:22:37 AM org.apache.catalina.loader.WebappClassLoader
clearReferencesThreads
SEVERE: The web application [/xwiki] appears to have started a thread
named [EvictionTimer-1] but has failed to stop it. This is very likely
to create a memory leak.
May 26, 2011 2:22:37 AM org.apache.catalina.loader.WebappClassLoader
checkThreadLocalMapForLeaks
SEVERE: The web application [/xwiki] created a ThreadLocal with key of
type [org.apache.log4j.helpers.ThreadLocalMap] (value
[org.apache.log4j.helpers.ThreadLocalMap@2a717ef5]) and a value of type
[java.util.Hashtable] (value [{}]) but failed to remove it when the web
application was stopped. Threads are going to be renewed over time to
try and avoid a probable memory leak.
May 26, 2011 2:22:37 AM org.apache.catalina.loader.WebappClassLoader
checkThreadLocalMapForLeaks
SEVERE: The web application [/xwiki] created a ThreadLocal with key of
type [org.apache.log4j.helpers.ThreadLocalMap] (value
[org.apache.log4j.helpers.ThreadLocalMap@2a717ef5]) and a value of type
[java.util.Hashtable] (value
[{url=http://neil.nmc.edu:8080/xwiki/bin/view/Main/}]) but failed to
remove it when the web application was stopped. Threads are going to be
renewed over time to try and avoid a probable memory leak.
May 26, 2011 2:22:37 AM org.apache.catalina.loader.WebappClassLoader
checkThreadLocalMapForLeaks
SEVERE: The web application [/xwiki] created a ThreadLocal with key of
type [org.apache.log4j.helpers.ThreadLocalMap] (value
[org.apache.log4j.helpers.ThreadLocalMap@2a717ef5]) and a value of type
[java.util.Hashtable] (value
[{url=http://neil.nmc.edu:8080/xwiki/bin/view/Main/}]) but failed to
remove it when the web application was stopped. Threads are going to be
renewed over time to try and avoid a probable memory leak.
Here's the gory details of everything I did (as well as I can remember)...
====
Installed the 64bit jdk from oracle..
java -version
java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) 64-Bit Server VM (build 20.0-b11, mixed mode)
====
Downloaded tomcat and installed it...
tar -zxvf apache-tomcat-7.0.14.tar.gz
Modified the server.xml file and added:
deployOnStartup="true" to the Host node
Modified catalina.sh and added:
JAVA_HOME=/usr/local/jdk160_25
JAVA_OPTS="-Xmx512m -XX:MaxPermSize=128m"
Removed examples, host-manager, and manager from 'webapps'... I prefer
not to leave them...
====
Started tomcat - at that point I could get to the ROOT application and
browse the tomcat docs...
====
Installed mysql from RPM packages... Configured a few parameters in
my.cnf...
default-storage-engine=INNODB
innodb_file_per_table
skip-external-locking
max_connections=200
read_buffer_size=1M
sort_buffer_size=1M
key_buffer_size=128M
max_allowed_packet=32M
innodb_data_file_path = ibdata1:100M:autoextend
innodb_buffer_pool_size=256M
innodb_additional_mem_pool_size=20M
innodb_log_file_size=64M
innodb_log_buffer_size=8M
innodb_flush_log_at_trx_commit=1
====
Created the database and the user...
create database testxwiki default character set utf8;
grant all privileges on testxwiki.* to xwiki@localhost identified by
'some_password';
flush privileges;
====
Extracted the war file to 'xwiki' inside of webapps...
Added mysql-connector-java-5.1.16-bin.jar to xwiki/WEB-INF/lib
====
Changed hibernate.cfg.xml by:
commenting out the hsqldb section...
moved the comment tag for the mysql section up under the reference to
xwiki-1945 Leaving the property and mapping nodes uncommented:
<property
name="connection.url">jdbc:mysql://localhost/testxwiki?useServerPrepStmts=false&useUnicode=true&characterEncoding=UTF-8&sessionVariables=sql_mode=''</property>
<property name="connection.username">xwiki</property>
<property name="connection.password">some_password</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"/>
====
changed xwiki.cfg as follows:
diff xwiki.original xwiki.cfg
82c82
< # xwiki.store.hibernate.path=/WEB-INF/hibernate.cfg.xml
---
> xwiki.store.hibernate.path=/WEB-INF/hibernate.cfg.xml
104c104
< # xwiki.db=xwiki
---
> xwiki.db=testxwiki
DO I NEED TO CHANGE THE XWIKI.DB PROPERTY???
====
When I start tomcat and go to the xwiki site I get the following in
catalina.out
STARTING TOMCAT...
May 26, 2011 2:02:57 AM org.apache.catalina.core.AprLifecycleListener init
INFO: The APR based Apache Tomcat Native library which allows optimal
performance in production environments was not found on the
java.library.path:
/usr/local/jdk160_25/jre/lib/amd64/server:/usr/local/jdk160_25/jre/lib/amd64:/usr/local/jdk160_25/jre/../lib/amd64:/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib
May 26, 2011 2:02:57 AM org.apache.coyote.AbstractProtocolHandler init
INFO: Initializing ProtocolHandler ["http-bio-8080"]
May 26, 2011 2:02:57 AM org.apache.coyote.AbstractProtocolHandler init
INFO: Initializing ProtocolHandler ["ajp-bio-8009"]
May 26, 2011 2:02:57 AM org.apache.catalina.startup.Catalina load
INFO: Initialization processed in 1213 ms
May 26, 2011 2:02:57 AM org.apache.catalina.core.StandardService
startInternal
INFO: Starting service Catalina
May 26, 2011 2:02:57 AM org.apache.catalina.core.StandardEngine
startInternal
INFO: Starting Servlet Engine: Apache Tomcat/7.0.14
May 26, 2011 2:02:57 AM org.apache.catalina.startup.HostConfig
deployDirectory
INFO: Deploying web application directory xwiki
May 26, 2011 2:02:59 AM org.apache.catalina.startup.TaglibUriRule body
INFO: TLD skipped. URI: http://jakarta.apache.org/struts/tags-html-1.0.2
is already defined
May 26, 2011 2:02:59 AM org.apache.catalina.startup.TaglibUriRule body
INFO: TLD skipped. URI: http://jakarta.apache.org/struts/tags-bean-1.0.2
is already defined
May 26, 2011 2:02:59 AM org.apache.catalina.startup.TaglibUriRule body
INFO: TLD skipped. URI:
http://jakarta.apache.org/struts/tags-logic-1.0.2 is already defined
May 26, 2011 2:03:09 AM org.apache.catalina.startup.HostConfig
deployDirectory
INFO: Deploying web application directory docs
May 26, 2011 2:03:09 AM org.apache.catalina.startup.HostConfig
deployDirectory
INFO: Deploying web application directory ROOT
May 26, 2011 2:03:09 AM org.apache.coyote.AbstractProtocolHandler start
INFO: Starting ProtocolHandler ["http-bio-8080"]
May 26, 2011 2:03:09 AM org.apache.coyote.AbstractProtocolHandler start
INFO: Starting ProtocolHandler ["ajp-bio-8009"]
May 26, 2011 2:03:09 AM org.apache.catalina.startup.Catalina start
INFO: Server startup in 12410 ms
BROWSE TO THE XWIKI APP....
2011-05-26 02:03:29,868 [/xwiki/bin/view/Main/] FATAL
store.DBCPConnectionProvider - Could not create a DBCP pool. There is
an error in the hibernate configuration file, please review it.
org.apache.commons.dbcp.SQLNestedException: Cannot create
PoolableConnectionFactory (Unexpected exception encountered during query.)
at
org.apache.commons.dbcp.BasicDataSource.createPoolableConnectionFactory(BasicDataSource.java:1549)
at
org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:1388)
at
org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044)
at
com.xpn.xwiki.store.DBCPConnectionProvider.configure(DBCPConnectionProvider.java:193)
at
org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:124)
at
org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:56)
at
org.hibernate.cfg.SettingsFactory.createConnectionProvider(SettingsFactory.java:414)
at
org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:62)
at
org.hibernate.cfg.Configuration.buildSettings(Configuration.java:2073)
at
org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1298)
at
com.xpn.xwiki.store.XWikiHibernateBaseStore.initHibernate(XWikiHibernateBaseStore.java:166)
at
com.xpn.xwiki.store.XWikiHibernateBaseStore.checkHibernate(XWikiHibernateBaseStore.java:560)
at
com.xpn.xwiki.store.XWikiHibernateBaseStore.execute(XWikiHibernateBaseStore.java:1073)
at
com.xpn.xwiki.store.XWikiHibernateBaseStore.executeRead(XWikiHibernateBaseStore.java:1117)
at
com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager.getDBVersion(XWikiHibernateMigrationManager.java:68)
at
com.xpn.xwiki.store.migration.AbstractXWikiMigrationManager.<init>(AbstractXWikiMigrationManager.java:68)
at
com.xpn.xwiki.store.migration.hibernate.XWikiHibernateMigrationManager.<init>(XWikiHibernateMigrationManager.java:51)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native
Method)
at
sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
at
sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
at com.xpn.xwiki.XWiki.createClassFromConfig(XWiki.java:1132)
at com.xpn.xwiki.XWiki.initXWiki(XWiki.java:813)
at com.xpn.xwiki.XWiki.<init>(XWiki.java:756)
at com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:408)
at com.xpn.xwiki.XWiki.getXWiki(XWiki.java:496)
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:137)
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:117)
at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
at
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:621)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:722)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:304)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)
at com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:129)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)
at
org.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilter.java:152)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)
at
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:68)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)
at
org.xwiki.container.servlet.filters.internal.SavedRequestRestorerFilter.doFilter(SavedRequestRestorerFilter.java:218)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)
at
org.xwiki.container.servlet.filters.internal.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:240)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:164)
at
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:462)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:164)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:100)
at
org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:563)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118)
at
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:399)
at
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:317)
at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:204)
at
org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:311)
at
java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
at
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
at java.lang.Thread.run(Thread.java:662)
Caused by: java.sql.SQLException: Unexpected exception encountered
during query.
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1073)
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:987)
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:982)
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:927)
at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2665)
at com.mysql.jdbc.StatementImpl.executeUpdate(StatementImpl.java:1698)
at com.mysql.jdbc.StatementImpl.executeUpdate(StatementImpl.java:1617)
at
com.mysql.jdbc.ConnectionImpl.setSessionVariables(ConnectionImpl.java:5210)
at
com.mysql.jdbc.ConnectionImpl.initializePropsFromServer(ConnectionImpl.java:3375)
at
com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2385)
at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2154)
at com.mysql.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:792)
at com.mysql.jdbc.JDBC4Connection.<init>(JDBC4Connection.java:47)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native
Method)
at
sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
at
sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
at com.mysql.jdbc.Util.handleNewInstance(Util.java:411)
at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:381)
at
com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:305)
at
org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38)
at
org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:582)
at
org.apache.commons.dbcp.BasicDataSource.validateConnectionFactory(BasicDataSource.java:1556)
at
org.apache.commons.dbcp.BasicDataSource.createPoolableConnectionFactory(BasicDataSource.java:1545)
... 64 more
Caused by: java.lang.NullPointerException
at
com.mysql.jdbc.ConnectionImpl.getServerCharacterEncoding(ConnectionImpl.java:3100)
at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2095)
at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2619)
... 83 more
2011-05-26 02:03:29,876 [/xwiki/bin/view/Main/] WARN
action.RequestProcessor - Unhandled Exception thrown: class
com.xpn.xwiki.XWikiException
May 26, 2011 2:22:34 AM org.apache.catalina.core.StandardServer await
WHEN STOPPING TOMCAT....
INFO: A valid shutdown command was received via the shutdown port.
Stopping the Server instance.
May 26, 2011 2:22:34 AM org.apache.coyote.AbstractProtocolHandler pause
INFO: Pausing ProtocolHandler ["http-bio-8080"]
May 26, 2011 2:22:35 AM org.apache.coyote.AbstractProtocolHandler pause
INFO: Pausing ProtocolHandler ["ajp-bio-8009"]
May 26, 2011 2:22:36 AM org.apache.catalina.core.StandardService
stopInternal
INFO: Stopping service Catalina
May 26, 2011 2:22:37 AM org.apache.catalina.loader.WebappClassLoader
clearReferencesJdbc
SEVERE: The web application [/xwiki] registered the JDBC driver
[com.mysql.jdbc.Driver] but failed to unregister it when the web
application was stopped. To prevent a memory leak, the JDBC Driver has
been forcibly unregistered.
May 26, 2011 2:22:37 AM org.apache.catalina.loader.WebappClassLoader
clearReferencesThreads
SEVERE: The web application [/xwiki] appears to have started a thread
named [EvictionTimer-0] but has failed to stop it. This is very likely
to create a memory leak.
May 26, 2011 2:22:37 AM org.apache.catalina.loader.WebappClassLoader
clearReferencesThreads
SEVERE: The web application [/xwiki] appears to have started a thread
named [EvictionTimer-1] but has failed to stop it. This is very likely
to create a memory leak.
May 26, 2011 2:22:37 AM org.apache.catalina.loader.WebappClassLoader
checkThreadLocalMapForLeaks
SEVERE: The web application [/xwiki] created a ThreadLocal with key of
type [org.apache.log4j.helpers.ThreadLocalMap] (value
[org.apache.log4j.helpers.ThreadLocalMap@2a717ef5]) and a value of type
[java.util.Hashtable] (value [{}]) but failed to remove it when the web
application was stopped. Threads are going to be renewed over time to
try and avoid a probable memory leak.
May 26, 2011 2:22:37 AM org.apache.catalina.loader.WebappClassLoader
checkThreadLocalMapForLeaks
SEVERE: The web application [/xwiki] created a ThreadLocal with key of
type [org.apache.log4j.helpers.ThreadLocalMap] (value
[org.apache.log4j.helpers.ThreadLocalMap@2a717ef5]) and a value of type
[java.util.Hashtable] (value
[{url=http://neil.nmc.edu:8080/xwiki/bin/view/Main/}]) but failed to
remove it when the web application was stopped. Threads are going to be
renewed over time to try and avoid a probable memory leak.
May 26, 2011 2:22:37 AM org.apache.catalina.loader.WebappClassLoader
checkThreadLocalMapForLeaks
SEVERE: The web application [/xwiki] created a ThreadLocal with key of
type [org.apache.log4j.helpers.ThreadLocalMap] (value
[org.apache.log4j.helpers.ThreadLocalMap@2a717ef5]) and a value of type
[java.util.Hashtable] (value
[{url=http://neil.nmc.edu:8080/xwiki/bin/view/Main/}]) but failed to
remove it when the web application was stopped. Threads are going to be
renewed over time to try and avoid a probable memory leak.
May 26, 2011 2:22:37 AM org.apache.coyote.AbstractProtocolHandler stop
INFO: Stopping ProtocolHandler ["http-bio-8080"]
May 26, 2011 2:22:37 AM org.apache.coyote.AbstractProtocolHandler stop
INFO: Stopping ProtocolHandler ["ajp-bio-8009"]
Hi
Is there a tool/script that allows for exporting only pages from space XWiki with object XWikiuser
I know the export tool can export pages by selecting all or checkmark individual pages, but we have > 500 users, this becomes a drag....
Nice to have if it could also take group-object and which user is in what group
So we have a whole identity and access export
Gerritjan
Hello all,
In a elearning invironment XWIKI have to be linket to an external
software tool. In a second step XWIKI send some data to the external
tool to open a specific file. At the end of the usage of the external
tool XWIKI will get some date from the external tool and store it in a
page.
What kind of externsion I need to solve these problem?
Are there any examples?
Thank you for help!
Yours
Frank Marrenbach
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
The XWiki development team is proud to announce the release of XWiki Enterprise 3.1 Final.
Go grab it at http://www.xwiki.org/xwiki/bin/view/Main/Download
This is the first ever release to be tested in a staging repository and is probably the most well tested release to date.
You can review the changes made since 3.0 by going to:
http://www.xwiki.org/xwiki/bin/view/ReleaseNotes/ReleaseNotesXWikiEnterpris…
Thanks
- -The XWiki development team
If you would like to download the new release now, you can using these links:
- ---- XWiki Enterprise for Servers ----
xwiki-enterprise-web-3.1.war
SHA1: 5321b065247027cffb2b139bbe9db876e079f4ca
http://forge.ow2.org/project/download.php?group_id=170&file_id=16846
xwiki-enterprise-wiki-3.1.xar
SHA1: d80a7611d19dc28717a4538efe49cfd4858f94ec
http://forge.ow2.org/project/download.php?group_id=170&file_id=16847
- ---- XWiki Enterprise Standalone ----
xwiki-enterprise-installer-windows-3.1.exe
SHA1: c2ba74cfae30e272566f4e6ce7435d14ae9df2e3
http://forge.ow2.org/project/download.php?group_id=170&file_id=16845
xwiki-enterprise-jetty-hsqldb-3.1.zip
SHA1: 82a80420f48b7d0614822137498251e7fc01e889
http://forge.ow2.org/project/download.php?group_id=170&file_id=16844
xwiki-enterprise-installer-generic-3.1-standard.jar
SHA1: 7a038ce14be2b75bdaecb816bcf699f221908d9b
http://forge.ow2.org/project/download.php?group_id=170&file_id=16843
- ---- XWiki Manager for Servers ----
xwiki-manager-web-3.1.war
SHA1: abdf4e758246cabf4a1af79337e8170bfc582b1e
http://forge.ow2.org/project/download.php?group_id=170&file_id=16848
xwiki-manager-wiki-administrator-3.1.xar
SHA1: 9e2c9a2b02f87060c657c70bf15e4721df7e4f6c
http://forge.ow2.org/project/download.php?group_id=170&file_id=16850
- ---- XWiki Manager Standalone ----
xwiki-manager-jetty-mysql-3.1.zip
SHA1: f6277fd61c412642300427440798fd27938651cf
http://forge.ow2.org/project/download.php?group_id=170&file_id=16851
- ---- XWiki Manager Extension for XWiki Enterprise Installations ----
xwiki-manager-application-xem-3.1.xar
SHA1: f22abfd671527f6ef293d3763b8e688e2f0c100d
http://forge.ow2.org/project/download.php?group_id=170&file_id=16849
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)
iQIcBAEBAgAGBQJOAL4sAAoJECYAmptlsgnWNk8P/jDYcGMDioM+DCzaN69Ljo5F
De3EQQL0c++OjkC+R/s3kzxoHFk9g2Sa8bWjjDYIqiORiV1eIbJ1RnV5Tc31G5xA
Q5MastEQ9onzQalXnZDJhrwwSw2CYMk9sia3bWBDPi55zuSKJvSar7Zgg85xE953
0a+Xmp2bCECc8QI8taeqyOnpAmvHR3NG6sKFc6biVRTBcU93XhUVZVPmjZixvupR
fxo3gVmyX4G9RbNJFKxHZkHyEHcRdW1+7vdR9Dj3qZBTGBs+2jAHR3Xl6LEjyAb6
+NrZsmHf590jnrvrrl4t0Ld5kaG4ykHICShOZRIrZ8VylBTylHl+Zgx38imQ818J
/YVEdjCGh6iqOHF1BQM4aeiAFw/Ja3EiqjpUkrqtMH5pjfbMU3qNNxKAtP4WKdac
xDZaUZddMcKGauA7Qc27YkQkl7Nkvb4A3ikNld/PZs2QfDPEJsytrz6VqAgnLfwO
Q4H6rvltysCbv/v05V2/jgUrNtXsnUa2NSOXjYVrsdiQh71qTph9I+nNbjk35gs/
dD8TaFxejMmu68qUcOR2aFIRncO2QKlbff8dN1UfkXJ7dd/HVS/1/1YtBQWiIqjk
TWRS3KVgf4tgo1yHGyedBIkSCo3+iHffUyMPkmZoxJ9fnzvVWRi7eOQWOUwCOqWd
Lg7wLAAwbJWY1rdpiXAT
=78pa
-----END PGP SIGNATURE-----
Hi,
after the update the activity object in the Dashboard does not work anymore. I can see it, but it shows no activities, even no posts.
Thanks for your ideas.
Felix
Hello,
Context : XEM 2.7.1 on Tomcat6.0 + MySQL 5.0
I'm used to restore my xwiki farm SQL backup on a test environment.
I have to update the Domain names and then it works fine.
But this time, I encounter the following issue :
- I can retrieve the different version of an existing attachment
(without any problem)
- I can add a new version of an attachment (the version number is
incremented and I can download it) but ...
- When I look at the revision history of the attachment, all the old
revisions are now lost and the following lines appear in the xwiki.log
2011-06-14 10:56:04,169
[http://www.lclh.org/bin/viewattachrev/Documentation/WebHome/xwikisanitychec…]
[http://www.lclh.org/bin/viewattachrev/Documentation/WebHome/xwikisanitychec…]
WARN internal.DefaultVelocityEngine - Deprecated usage of method
[com.xpn.xwiki.api.XWiki.parseMessage] in
/templates/viewattachrev.vm@4,12
2011-06-14 10:56:04,169
[http://www.lclh.org/bin/viewattachrev/Documentation/WebHome/xwikisanitychec…]
[http://www.lclh.org/bin/viewattachrev/Documentation/WebHome/xwikisanitychec…]
WARN doc.XWikiAttachment - Failed to load archive for
attachment [xwikisanitycheck.sql(a)Documentation.WebHome]. This
attachment is broken, please consider re-uploading it. Internal error:
Error number 3231 in 3: Exception while loading attachment archive
xwikisanitycheck.sql of document Documentation.WebHome
Wrapped Exception: Error number 0 in 3: Exception while hibernate execute
Wrapped Exception: Exception occurred inside setter of
com.xpn.xwiki.doc.XWikiAttachmentArchive.archive
2011-06-14 10:56:04,169
[http://www.lclh.org/bin/viewattachrev/Documentation/WebHome/xwikisanitychec…]
[http://www.lclh.org/bin/viewattachrev/Documentation/WebHome/xwikisanitychec…]
WARN doc.XWikiAttachment - Cannot retrieve versions of
attachment [xwikisanitycheck.sql(a)Documentation.WebHome]: null
Hopefully, this doesn't occur on my production environment.
Do you have any idea about this issue ? Your help will be really appreciated.
Regards,
Maxime Sinclair
Hi all,
Probably a bit of a newbie quesion. Does anyone know how to hide the option
'view source' for unregistered users? Also the wiki history - these are
things I don't want visitors to see.
Thanks,
Martin
Hi Marius,
Yes my wiki is hosted on myxwiki.org, I will follow the thread as adviced
and let you know.
Thanks,
Yannick
2011/6/14 <users-request(a)xwiki.org>
> Send users mailing list submissions to
> users(a)xwiki.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
> http://lists.xwiki.org/mailman/listinfo/users
> or, via email, send a message with subject or body 'help' to
> users-request(a)xwiki.org
>
> You can reach the person managing the list at
> users-owner(a)xwiki.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of users digest..."
>
>
> Today's Topics:
>
> 1. Fwd: Fwd: users Digest, Vol 47, Issue 12 (Marius Dumitru Florea)
> 2. Fwd: users Digest, Vol 47, Issue 12 (Yannick Dewilde)
> 3. Subscribe to RSS feed inpassword-protected wiki (coldserenity)
> 4. Activity Dashboard doesn't work (Felix van Wasen)
> 5. Re: Activity Dashboard doesn't work (Sergiu Dumitriu)
> 6. Re: Subscribe to RSS feed inpassword-protected wiki
> (Sergiu Dumitriu)
> 7. Re: Class with hibernate query (Sergiu Dumitriu)
> 8. Re: Subscribe to RSS feed inpassword-protected wiki
> (Roman Muntyanu)
> 9. Issue on attachments versioning (Maxime Sinclair)
> 10. Re: Issue on attachments versioning (Maxime Sinclair)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Mon, 13 Jun 2011 13:46:40 +0300
> From: Marius Dumitru Florea <mariusdumitru.florea(a)xwiki.com>
> Subject: [xwiki-users] Fwd: Fwd: users Digest, Vol 47, Issue 12
> To: XWiki Users <users(a)xwiki.org>
> Message-ID: <4DF5EA90.8060002(a)xwiki.com>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>
> Hi Yannick,
>
> You didn't answer the second question. Do you have this problem on a
> wiki hosted by myxwiki.org or on a wiki hosted elsewhere. If your wiki
> is hosted on myxwiki.org then you need to follow this thread
> http://lists.xwiki.org/pipermail/users/2011-June/024308.html . Otherwise
> you need to tell us more about your problem. What version of XWiki
> Enterprise are you using? Is it a fresh install or did you upgrade
> recently? Was the WYSIWYG editor working before? What browser are you
> using? Does it happen on other browsers? On Firefox, do you see any
> JavaScript exception logged in the Firebug console?
>
> Hope this helps,
> Marius
>
> -------- Original Message --------
> Return-Path: <yannick.dewilde(a)gmail.com>
> X-Original-To: mariusdumitru.florea(a)xwiki.com
> Delivered-To: mariusdumitru.florea(a)xwiki.com
> Received: from mail-yx0-f178.google.com (mail-yx0-f178.google.com
> [209.85.213.178]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No
> client certificate requested) by borabora.xpertnet.biz (Postfix) with
> ESMTP id 5D8D76601E7 for <mariusdumitru.florea(a)xwiki.com>; Mon, 13 Jun
> 2011 12:15:26 +0200 (CEST)
> Received: by yxm8 with SMTP id 8so1763086yxm.9 for
> <mariusdumitru.florea(a)xwiki.com>; Mon, 13 Jun 2011 03:15:24 -0700 (PDT)
> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com;
> s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date
> :message-id:subject:from:to:content-type;
> bh=9g4XSJEg18VB89KXhCUEE+Fy9FsKNpu3WDWDI5OwbE0=;
> b=SXsznF3RcKfunBMiQt8ciqP0EUyBcpnweOkV1qtHT9BlpXPgE8z9Mi/EYHq0cy4vlH
> atwJTAAPzUhoBa9PPNj22QDsGD8JpDhvAZf3QBIP19ousa0ynvoYh+qPezLn9PJvlSls
> 6Au1mBKy2jhxWraP0s4uNchXCUCW99d2uWBJY=
> DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma;
> h=mime-version:in-reply-to:references:date:message-id:subject:from:to
> :content-type;
> b=TcDsP59ApWfv4Xjck3eHTq3+mbk5Y6K5P9uRxI/ZTnen4RbTwPnhmT7c7dOWUjgWO/
> hzZbypFO58oxa+aoptgvSVq8dW5PWEViHvDIXRvuilZ4/f3Ej99+ooZvsljkI7RxGACY
> hboezguoMQ1V9FNjc7uhOUnYZrpt50XR7zyEg=
> MIME-Version: 1.0
> Received: by 10.236.191.200 with SMTP id
> g48mr6974588yhn.437.1307960124156; Mon, 13 Jun 2011 03:15:24 -0700 (PDT)
> Received: by 10.147.124.4 with HTTP; Mon, 13 Jun 2011 03:15:24 -0700
> (PDT)
> In-Reply-To: <mailman.3.1307959204.7144.users(a)xwiki.org>
> References: <mailman.3.1307959204.7144.users(a)xwiki.org>
> Date: Mon, 13 Jun 2011 12:15:24 +0200
> Message-ID: <BANLkTim08TXUVFWBB7bo4SkdY67ziefS+g(a)mail.gmail.com>
> Subject: Fwd: users Digest, Vol 47, Issue 12
> From: Yannick Dewilde <yannick.dewilde(a)gmail.com>
> To: mariusdumitru.florea(a)xwiki.com
> Content-Type: multipart/alternative;
> boundary=20cf30563e6b94ab6804a595328b
>
>
>
> Hi Marius,
>
> No I can't edit a simple wiki page with WYSIWYG...
>
> Thanks for your help
>
> Yannick
>
> ---------- Forwarded message ----------
> From: ** <users-request(a)xwiki.org <mailto:users-request@xwiki.org>>
> Date: 2011/6/13
> Subject: users Digest, Vol 47, Issue 12
> To: users(a)xwiki.org <mailto:users@xwiki.org>
>
>
> Message: 2
> Date: Mon, 13 Jun 2011 12:19:19 +0300
> From: Marius Dumitru Florea <mariusdumitru.florea(a)xwiki.com
> <mailto:mariusdumitru.florea@xwiki.com>>
> Subject: Re: [xwiki-users] Blog : windows "Content:" and "Summary
> (optional):" not accessible
> To: users(a)xwiki.org <mailto:users@xwiki.org>
> Message-ID: <4DF5D617.9040301(a)xwiki.com <mailto:4DF5D617.9040301@xwiki.com
> >>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>
> Hi Yannick,
>
> On 06/10/2011 02:39 PM, Yannick Dewilde wrote:
> > Hello,
> >
>
> > When I try to post a blog, the windows "Content:" and "Summary
> (optional):"
> > are in loading mode all the time. It's not possible to add anything.
>
> I guess this means the WYSIWYG editor fails to load. Can you edit a
> simple wiki page in WYSIWYG edit mode? Do you have a wiki on myxwiki.org
> <http://myxwiki.org>?
>
> Hope this helps,
> Marius
>
> >
> > Can you help me pls?
> >
> > Regards
> >
> > Yannick
> > _______________________________________________
> > users mailing list
> > users(a)xwiki.org <mailto:users@xwiki.org>
> > http://lists.xwiki.org/mailman/listinfo/users
>
>
> ------------------------------
>
> _______________________________________________
> users mailing list
> users(a)xwiki.org <mailto:users@xwiki.org>
> http://lists.xwiki.org/mailman/listinfo/users
>
>
> End of users Digest, Vol 47, Issue 12
> *************************************
>
>
>
> ------------------------------
>
> Message: 2
> Date: Mon, 13 Jun 2011 13:00:07 +0200
> From: Yannick Dewilde <yannick.dewilde(a)gmail.com>
> Subject: [xwiki-users] Fwd: users Digest, Vol 47, Issue 12
> To: XWiki Users <users(a)xwiki.org>
> Message-ID: <BANLkTi=_4WOT8PRdu+P6iC3XauF=CaqjbQ(a)mail.gmail.com>
> Content-Type: text/plain; charset=ISO-8859-1
>
> Hi Marius,
>
> No I can't edit a simple wiki page with WYSIWYG...
>
> Thanks for your help
>
> Yannick
>
> ---------- Forwarded message ----------
> From: <users-request(a)xwiki.org>
> Date: 2011/6/13
> Subject: users Digest, Vol 47, Issue 12
> To: users(a)xwiki.org
>
>
> Message: 2
> Date: Mon, 13 Jun 2011 12:19:19 +0300
> From: Marius Dumitru Florea <mariusdumitru.florea(a)xwiki.com>
> Subject: Re: [xwiki-users] Blog : windows "Content:" and "Summary
> (optional):" not accessible
> To: users(a)xwiki.org
> Message-ID: <4DF5D617.9040301(a)xwiki.com>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>
> Hi Yannick,
>
> On 06/10/2011 02:39 PM, Yannick Dewilde wrote:
> > Hello,
> >
>
> > When I try to post a blog, the windows "Content:" and "Summary
> (optional):"
> > are in loading mode all the time. It's not possible to add anything.
>
> I guess this means the WYSIWYG editor fails to load. Can you edit a
> simple wiki page in WYSIWYG edit mode? Do you have a wiki on myxwiki.org?
>
> Hope this helps,
> Marius
>
> >
> > Can you help me pls?
> >
> > Regards
> >
> > Yannick
> > _______________________________________________
> > users mailing list
> > users(a)xwiki.org
> > http://lists.xwiki.org/mailman/listinfo/users
>
>
> ------------------------------
>
> _______________________________________________
> users mailing list
> users(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
>
>
> End of users Digest, Vol 47, Issue 12
> *************************************
>
>
> ------------------------------
>
> Message: 3
> Date: Mon, 13 Jun 2011 10:53:23 -0700 (PDT)
> From: coldserenity <rmuntyan(a)softserveinc.com>
> Subject: [xwiki-users] Subscribe to RSS feed inpassword-protected wiki
> To: users(a)xwiki.org
> Message-ID: <1307987603361-6471115.post(a)n2.nabble.com>
> Content-Type: text/plain; charset=us-ascii
>
> Hi,
>
> Is there a way to subscribe to RSS feed in a totally protected XWiki (only
> log-in page described to anonymous)? E.g. with MS Outlook?
> I used common feed list approach described here
>
> http://blog.jonudell.net/2007/01/23/a-screencast-about-common-feeds-in-vist…
> I'm able to see items when the feed is imported to outlook the first time,
> but then I do not get the updates.
> And here's http://blog.jonudell.net/2007/03/27/authenticated-rss-feeds/
> where I found people discussing subscription to a password protected feed.
>
> Regards,
> Roman
>
> --
> View this message in context:
> http://xwiki.475771.n2.nabble.com/Subscribe-to-RSS-feed-inpassword-protecte…
> Sent from the XWiki- Users mailing list archive at Nabble.com.
>
>
> ------------------------------
>
> Message: 4
> Date: Mon, 13 Jun 2011 21:16:17 +0200
> From: Felix van Wasen <felixvanwasen(a)me.com>
> Subject: [xwiki-users] Activity Dashboard doesn't work
> To: users(a)xwiki.org
> Message-ID: <CBAB255C98254DD69F19AE0956E970E8(a)me.com>
> Content-Type: text/plain; CHARSET=US-ASCII
>
> Hi,
>
> after the update the activity object in the Dashboard does not work
> anymore. I can see it, but it shows no activities, even no posts.
>
> Thanks for your ideas.
>
> Felix
>
>
> ------------------------------
>
> Message: 5
> Date: Tue, 14 Jun 2011 02:51:33 +0200
> From: Sergiu Dumitriu <sergiu(a)xwiki.com>
> Subject: Re: [xwiki-users] Activity Dashboard doesn't work
> To: XWiki Users <users(a)xwiki.org>
> Message-ID: <4DF6B095.4030602(a)xwiki.com>
> Content-Type: text/plain; charset=UTF-8; format=flowed
>
> On 06/13/2011 09:16 PM, Felix van Wasen wrote:
> > Hi,
> >
> > after the update the activity object in the Dashboard does not work
> anymore. I can see it, but it shows no activities, even no posts.
> >
> > Thanks for your ideas.
>
> Can you mention from which to which version did you upgrade?
>
> --
> Sergiu Dumitriu
> http://purl.org/net/sergiu/
>
>
> ------------------------------
>
> Message: 6
> Date: Tue, 14 Jun 2011 03:05:42 +0200
> From: Sergiu Dumitriu <sergiu(a)xwiki.com>
> Subject: Re: [xwiki-users] Subscribe to RSS feed inpassword-protected
> wiki
> To: XWiki Users <users(a)xwiki.org>
> Message-ID: <4DF6B3E6.6050807(a)xwiki.com>
> Content-Type: text/plain; charset=UTF-8; format=flowed
>
> On 06/13/2011 07:53 PM, coldserenity wrote:
> > Hi,
> >
> > Is there a way to subscribe to RSS feed in a totally protected XWiki
> (only
> > log-in page described to anonymous)? E.g. with MS Outlook?
> > I used common feed list approach described here
> >
> http://blog.jonudell.net/2007/01/23/a-screencast-about-common-feeds-in-vist…
> > I'm able to see items when the feed is imported to outlook the first
> time,
> > but then I do not get the updates.
> > And here's
> http://blog.jonudell.net/2007/03/27/authenticated-rss-feeds/
> > where I found people discussing subscription to a password protected
> feed.
> >
> > Regards,
> > Roman
>
> Other than configuring the feed reader to use a certain username and
> password, you must also alter a bit the RSS URL by appending
> &basicauth=1 as a query string parameter.
>
> For example, for the blog feed, use:
> http://xwiki.org/xwiki/bin/Blog/GlobalBlogRss?xpage=plain&basicauth=1
> instead of:
> http://xwiki.org/xwiki/bin/Blog/GlobalBlogRss?xpage=plain
>
> Does this solve your problem?
> --
> Sergiu Dumitriu
> http://purl.org/net/sergiu/
>
>
> ------------------------------
>
> Message: 7
> Date: Tue, 14 Jun 2011 03:20:32 +0200
> From: Sergiu Dumitriu <sergiu(a)xwiki.com>
> Subject: Re: [xwiki-users] Class with hibernate query
> To: XWiki Users <users(a)xwiki.org>
> Message-ID: <4DF6B760.9010308(a)xwiki.com>
> Content-Type: text/plain; charset=UTF-8; format=flowed
>
> On 06/12/2011 05:39 PM, Gerritjan Koekkoek wrote:
> > Hi
> >
> > (XWiki 2.7.2)
> > I've defined a class with a property defined as DatabaseList
> > It's a multi select
> > The Hibernate query is:
> >
> > select ata.filename
> > from XWikiAttachment as ata,
> > XWikiDocument as doc
> > where doc.fullName ='CdLSAssociations.FlagAttachments'
> > and doc.id = ata.docId
> > order by ata.filename
> >
> > This works fine, when I create a new object of this class I can select
> multiple fileNames
> >
> > My questions;
> > I would like to strip the filename extension from the ata.filename
> (ar.png => ar)
> > I was trying a substr(ata.filename,1,2) does not work
> > How do I do this?
>
> In theory you could use something like this:
>
> select ata.filename, substring(ata.filename, 0, locate(ata.filename,
> '.')) from XWikiAttachment...
>
> But only in theory. There's a bug in the DBList query processor that
> breaks that.
>
> > Second, I wonder if it is possible to add a second collumn to the query
> that uses a translation table
> > like
> > select ata.filename,
> > $msg.get(ata.filename) as translatedName
>
> This can't work. There are two languages involved here, Velocity and
> HQL, and they don't mix in real time.
>
> > from XWikiAttachment as ata,
> > XWikiDocument as doc
> > where doc.fullName ='CdLSAssociations.FlagAttachments'
> > and doc.id = ata.docId
> > order by translatedName
> >
> > and use in the class property defenition the ID Field name and Value
> Field Name
> >
> > Any help is highly appreciated
>
> I'd recommend that you write a custom displayer for this field, instead
> of relying on the default display. You should use the first, simple
> query that just retrieves the attachment names, then create you own
> display that substrings the extension for the displayed option label.
>
> --
> Sergiu Dumitriu
> http://purl.org/net/sergiu/
>
>
> ------------------------------
>
> Message: 8
> Date: Tue, 14 Jun 2011 10:46:24 +0300
> From: Roman Muntyanu <rmuntyan(a)softserveinc.com>
> Subject: Re: [xwiki-users] Subscribe to RSS feed inpassword-protected
> wiki
> To: XWiki Users <users(a)xwiki.org>
> Message-ID:
> <
> 397E2D30386E9346954E47D6E6CAA0B502315E85708D(a)MAILBOX.softservecom.com>
>
> Content-Type: text/plain; charset="us-ascii"
>
> It did thus far, at least when pressing send/receive I can now see the
> updates.
> Thanks, Sergiu!
>
> -----Original Message-----
> From: users-bounces(a)xwiki.org [mailto:users-bounces@xwiki.org] On Behalf
> Of Sergiu Dumitriu
> Sent: Tuesday, June 14, 2011 04:06 AM
> To: XWiki Users
> Subject: Re: [xwiki-users] Subscribe to RSS feed inpassword-protected wiki
>
> On 06/13/2011 07:53 PM, coldserenity wrote:
> > Hi,
> >
> > Is there a way to subscribe to RSS feed in a totally protected XWiki
> (only
> > log-in page described to anonymous)? E.g. with MS Outlook?
> > I used common feed list approach described here
> >
> http://blog.jonudell.net/2007/01/23/a-screencast-about-common-feeds-in-vist…
> > I'm able to see items when the feed is imported to outlook the first
> time,
> > but then I do not get the updates.
> > And here's
> http://blog.jonudell.net/2007/03/27/authenticated-rss-feeds/
> > where I found people discussing subscription to a password protected
> feed.
> >
> > Regards,
> > Roman
>
> Other than configuring the feed reader to use a certain username and
> password, you must also alter a bit the RSS URL by appending
> &basicauth=1 as a query string parameter.
>
> For example, for the blog feed, use:
> http://xwiki.org/xwiki/bin/Blog/GlobalBlogRss?xpage=plain&basicauth=1
> instead of:
> http://xwiki.org/xwiki/bin/Blog/GlobalBlogRss?xpage=plain
>
> Does this solve your problem?
> --
> Sergiu Dumitriu
> http://purl.org/net/sergiu/
> _______________________________________________
> users mailing list
> users(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
>
>
> ------------------------------
>
> Message: 9
> Date: Tue, 14 Jun 2011 11:40:43 +0200
> From: Maxime Sinclair <maxime.sinclair(a)gmail.com>
> Subject: [xwiki-users] Issue on attachments versioning
> To: XWiki Users <users(a)xwiki.org>
> Message-ID: <BANLkTi=x=SGCKuW065fnhqNk_5_c97Sq2w(a)mail.gmail.com>
> Content-Type: text/plain; charset=ISO-8859-1
>
> Hello,
>
> Context : XEM 2.7.1 on Tomcat6.0 + MySQL 5.0
>
> I'm used to restore my xwiki farm SQL backup on a test environment.
> I have to update the Domain names and then it works fine.
> But this time, I encounter the following issue :
> - I can retrieve the different version of an existing attachment
> (without any problem)
> - I can add a new version of an attachment (the version number is
> incremented and I can download it) but ...
> - When I look at the revision history of the attachment, all the old
> revisions are now lost and the following lines appear in the xwiki.log
>
> 2011-06-14 10:56:04,169
> [
> http://www.lclh.org/bin/viewattachrev/Documentation/WebHome/xwikisanitychec…
> ]
> [
> http://www.lclh.org/bin/viewattachrev/Documentation/WebHome/xwikisanitychec…
> ]
> WARN internal.DefaultVelocityEngine - Deprecated usage of method
> [com.xpn.xwiki.api.XWiki.parseMessage] in
> /templates/viewattachrev.vm@4,12
>
> 2011-06-14 10:56:04,169
> [
> http://www.lclh.org/bin/viewattachrev/Documentation/WebHome/xwikisanitychec…
> ]
> [
> http://www.lclh.org/bin/viewattachrev/Documentation/WebHome/xwikisanitychec…
> ]
> WARN doc.XWikiAttachment - Failed to load archive for
> attachment [xwikisanitycheck.sql(a)Documentation.WebHome]. This
> attachment is broken, please consider re-uploading it. Internal error:
> Error number 3231 in 3: Exception while loading attachment archive
> xwikisanitycheck.sql of document Documentation.WebHome
> Wrapped Exception: Error number 0 in 3: Exception while hibernate execute
> Wrapped Exception: Exception occurred inside setter of
> com.xpn.xwiki.doc.XWikiAttachmentArchive.archive
>
> 2011-06-14 10:56:04,169
> [
> http://www.lclh.org/bin/viewattachrev/Documentation/WebHome/xwikisanitychec…
> ]
> [
> http://www.lclh.org/bin/viewattachrev/Documentation/WebHome/xwikisanitychec…
> ]
> WARN doc.XWikiAttachment - Cannot retrieve versions of
> attachment [xwikisanitycheck.sql(a)Documentation.WebHome]: null
>
> Hopefully, this doesn't occur on my production environment.
> Do you have any idea about this issue ? Your help will be really
> appreciated.
>
> Regards,
> Maxime Sinclair
>
>
> ------------------------------
>
> Message: 10
> Date: Tue, 14 Jun 2011 11:55:50 +0200
> From: Maxime Sinclair <maxime.sinclair(a)gmail.com>
> Subject: Re: [xwiki-users] Issue on attachments versioning
> To: XWiki Users <users(a)xwiki.org>
> Message-ID: <BANLkTi=sSjM-Lsde83c_fVRsTwbh_bBBAw(a)mail.gmail.com>
> Content-Type: text/plain; charset=ISO-8859-1
>
> I reproduce the problem while logging in debug mode.
> This is an excerpt :
>
> 11:45:34,519
> [.../bin/viewattachrev/Documentation/WebHome/xwikisanitycheck.sql]
> WARN internal.DefaultVelocityEngine - Deprecated usage of method
> [com.xpn.xwiki.api.XWiki.parseMessage] in
> /templates/viewattachrev.vm@4,12
>
> DEBUG impl.SessionImpl - opened session at timestamp:
> 13080447345
> DEBUG jdbc.ConnectionManager - opening JDBC connection
> INFO dialect.Dialect - Using dialect:
> org.hibernate.dialect.MySQLDialect
> DEBUG transaction.JDBCTransaction - begin
> DEBUG transaction.JDBCTransaction - current autocommit status: false
> DEBUG loader.Loader - loading entity:
> [com.xpn.xwiki.doc.XWikiAttachmentArchive#1260613346]
> DEBUG jdbc.AbstractBatcher - about to open
> PreparedStatement (open PreparedStatements: 0, globally: 0)
> DEBUG hibernate.SQL - select xwikiattac0_.XWA_ID as
> XWA1_8_0_, xwikiattac0_.XWA_ARCHIVE as XWA2_8_0_ from
> xwikiattachment_archive xwikiattac0_ where xwikiattac0_.XWA_ID=?
> DEBUG jdbc.AbstractBatcher - about to open ResultSet (open
> ResultSets: 0, globally: 0)
> DEBUG loader.Loader - result row:
> EntityKey[com.xpn.xwiki.doc.XWikiAttachmentArchive#1260613346]
> DEBUG jdbc.AbstractBatcher - about to close ResultSet (open
> ResultSets: 1, globally: 1)
> DEBUG jdbc.AbstractBatcher - about to close
> PreparedStatement (open PreparedStatements: 1, globally: 1)
> DEBUG engine.TwoPhaseLoad - resolving associations for
> [com.xpn.xwiki.doc.XWikiAttachmentArchive#1260613346]
> INFO def.DefaultLoadEventListener - Error performing load command
> org.hibernate.PropertyAccessException: Exception occurred inside
> setter of com.xpn.xwiki.doc.XWikiAttachmentArchive.archive
> at
> org.hibernate.property.BasicPropertyAccessor$BasicSetter.set(BasicPropertyAccessor.java:65)
> at
> org.hibernate.tuple.entity.AbstractEntityTuplizer.setPropertyValues(AbstractEntityTuplizer.java:337)
> at
> org.hibernate.tuple.entity.PojoEntityTuplizer.setPropertyValues(PojoEntityTuplizer.java:200)
> at
> org.hibernate.persister.entity.AbstractEntityPersister.setPropertyValues(AbstractEntityPersister.java:3571)
> at
> org.hibernate.engine.TwoPhaseLoad.initializeEntity(TwoPhaseLoad.java:133)
> at
> org.hibernate.loader.Loader.initializeEntitiesAndCollections(Loader.java:854)
> at org.hibernate.loader.Loader.doQuery(Loader.java:729)
> at
> org.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:236)
> at org.hibernate.loader.Loader.loadEntity(Loader.java:1860)
> at
> org.hibernate.loader.entity.AbstractEntityLoader.load(AbstractEntityLoader.java:48)
> at
> org.hibernate.loader.entity.AbstractEntityLoader.load(AbstractEntityLoader.java:42)
> at
> org.hibernate.persister.entity.AbstractEntityPersister.load(AbstractEntityPersister.java:3049)
> at
> org.hibernate.event.def.DefaultLoadEventListener.loadFromDatasource(DefaultLoadEventListener.java:399)
> at
> org.hibernate.event.def.DefaultLoadEventListener.doLoad(DefaultLoadEventListener.java:375)
> at
> org.hibernate.event.def.DefaultLoadEventListener.load(DefaultLoadEventListener.java:139)
> at
> org.hibernate.event.def.DefaultLoadEventListener.proxyOrLoad(DefaultLoadEventListener.java:195)
> at
> org.hibernate.event.def.DefaultLoadEventListener.onLoad(DefaultLoadEventListener.java:103)
> at org.hibernate.impl.SessionImpl.fireLoad(SessionImpl.java:878)
> at org.hibernate.impl.SessionImpl.load(SessionImpl.java:784)
> at
> com.xpn.xwiki.store.hibernate.HibernateAttachmentVersioningStore$1.doInHibernate(HibernateAttachmentVersioningStore.java:79)
> at
> com.xpn.xwiki.store.XWikiHibernateBaseStore.execute(XWikiHibernateBaseStore.java:1081)
> ............
> Caused by: java.lang.reflect.InvocationTargetException
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
> at
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
> at java.lang.reflect.Method.invoke(Method.java:597)
> at
> org.hibernate.property.BasicPropertyAccessor$BasicSetter.set(BasicPropertyAccessor.java:42)
> ... 76 more
> Caused by: org.suigeneris.jrcs.rcs.parse.TokenMgrError: Lexical error
> at line 1, column 104. Encountered: "$" (36), after : ""
> at
> org.suigeneris.jrcs.rcs.parse.ArchiveParserTokenManager.getNextToken(ArchiveParserTokenManager.java:817)
> at
> org.suigeneris.jrcs.rcs.parse.ArchiveParser.jj_ntk(ArchiveParser.java:685)
> at
> org.suigeneris.jrcs.rcs.parse.ArchiveParser.authorName(ArchiveParser.java:527)
> at
> org.suigeneris.jrcs.rcs.parse.ArchiveParser.delta(ArchiveParser.java:385)
> at
> org.suigeneris.jrcs.rcs.parse.ArchiveParser.archive(ArchiveParser.java:96)
> at
> org.suigeneris.jrcs.rcs.parse.ArchiveParser.load(ArchiveParser.java:60)
> at org.suigeneris.jrcs.rcs.Archive.<init>(Archive.java:259)
> at org.suigeneris.jrcs.rcs.Archive.<init>(Archive.java:273)
> at
> com.xpn.xwiki.doc.XWikiAttachmentArchive.setArchive(XWikiAttachmentArchive.java:121)
> ... 81 more
>
>
> Hope this help to understand the issue.
> Maxime Sinclair
>
>
> 2011/6/14 Maxime Sinclair <maxime.sinclair(a)gmail.com>:
> > Hello,
> >
> > Context : XEM 2.7.1 on Tomcat6.0 + MySQL 5.0
> >
> > I'm used to restore my xwiki farm SQL backup on a test environment.
> > I have to update the Domain names and then it works fine.
> > But this time, I encounter the following issue :
> > - I can retrieve the different version of an existing attachment
> > (without any problem)
> > - I can add a new version of an attachment (the version number is
> > incremented and I can download it) but ...
> > - When I look at the revision history of the attachment, all the old
> > revisions are now lost and the following lines appear in the xwiki.log
> >
> > 2011-06-14 10:56:04,169
> > [
> http://www.lclh.org/bin/viewattachrev/Documentation/WebHome/xwikisanitychec…
> ]
> > [
> http://www.lclh.org/bin/viewattachrev/Documentation/WebHome/xwikisanitychec…
> ]
> > WARN ?internal.DefaultVelocityEngine ?- Deprecated usage of method
> > [com.xpn.xwiki.api.XWiki.parseMessage] in
> > /templates/viewattachrev.vm@4,12
> >
> > 2011-06-14 10:56:04,169
> > [
> http://www.lclh.org/bin/viewattachrev/Documentation/WebHome/xwikisanitychec…
> ]
> > [
> http://www.lclh.org/bin/viewattachrev/Documentation/WebHome/xwikisanitychec…
> ]
> > WARN ?doc.XWikiAttachment ? ? ? ? ? ? - Failed to load archive for
> > attachment [xwikisanitycheck.sql(a)Documentation.WebHome]. This
> > attachment is broken, please consider re-uploading it. Internal error:
> > Error number 3231 in 3: Exception while loading attachment archive
> > xwikisanitycheck.sql of document Documentation.WebHome
> > Wrapped Exception: Error number 0 in 3: Exception while hibernate execute
> > Wrapped Exception: Exception occurred inside setter of
> > com.xpn.xwiki.doc.XWikiAttachmentArchive.archive
> >
> > 2011-06-14 10:56:04,169
> > [
> http://www.lclh.org/bin/viewattachrev/Documentation/WebHome/xwikisanitychec…
> ]
> > [
> http://www.lclh.org/bin/viewattachrev/Documentation/WebHome/xwikisanitychec…
> ]
> > WARN ?doc.XWikiAttachment ? ? ? ? ? ? - Cannot retrieve versions of
> > attachment [xwikisanitycheck.sql(a)Documentation.WebHome]: null
> >
> > Hopefully, this doesn't occur on my production environment.
> > Do you have any idea about this issue ? Your help will be really
> appreciated.
> >
> > Regards,
> > Maxime Sinclair
> >
>
>
> ------------------------------
>
> _______________________________________________
> users mailing list
> users(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
>
>
> End of users Digest, Vol 47, Issue 13
> *************************************
>
Hello
I'd like to add for each page a way to track down if the page is a
"ongoing" status, is a "completed" status or is a "needFeedBack" status
for example.
Of course, the list of statuses should be configurable so i can put
mine.
My first idea was to create a class and add this object to each page but
-> i have created the class + classSheet + classTemplate but i see then
that i can create new documents.
Actually, I want the status to be embedded in the page edit mode, in a
panel for example, and that would be better if it is embedded in the
Document Information panel, just as the Tag field
So I try to add raw html in this but i don't know how to create a new
"status" property to the document.
If i use the "tag" property, i'm worrying about mixing two tag fields...
anyway, i've read and re-read the XWiki online documentation but i can't
find anything just like this.
PS -> of course, i'll have later a page per status with the list of all
documents in each statuses... (just like tag pages)
thank you for your help
Hey there, I have just two questions:
1. I created a "ThoughtArchive"-Application in which every user can jot down
ideas, just like a journal. I want the "thoughtarchive"-space to be visible
for every user, but pages in this space are just visible for each individual
user. example: i log in with my account, i create some new ideas, and then
another user logs in, but he only sees his thoughts.
2. I want to create a Projects-Application, where you can give
read/edit/delete rights to sections of the document. for example: I create a
new Project, type in some content and i want the first section to be public
and the second section private, that only I can view it. Is that possible
with XWiki?
Thanks...
--
View this message in context: http://xwiki.475771.n2.nabble.com/Access-rights-tp6479011p6479011.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi
(XWiki 2.7.2)
I've defined a class with a property defined as DatabaseList
It's a multi select
The Hibernate query is:
select ata.filename
from XWikiAttachment as ata,
XWikiDocument as doc
where doc.fullName ='CdLSAssociations.FlagAttachments'
and doc.id = ata.docId
order by ata.filename
This works fine, when I create a new object of this class I can select multiple fileNames
My questions;
I would like to strip the filename extension from the ata.filename (ar.png => ar)
I was trying a substr(ata.filename,1,2) does not work
How do I do this?
Second, I wonder if it is possible to add a second collumn to the query that uses a translation table
like
select ata.filename,
$msg.get(ata.filename) as translatedName
from XWikiAttachment as ata,
XWikiDocument as doc
where doc.fullName ='CdLSAssociations.FlagAttachments'
and doc.id = ata.docId
order by translatedName
and use in the class property defenition the ID Field name and Value Field Name
Any help is highly appreciated
Gerritjan
Hi Marius,
No I can't edit a simple wiki page with WYSIWYG...
Thanks for your help
Yannick
---------- Forwarded message ----------
From: <users-request(a)xwiki.org>
Date: 2011/6/13
Subject: users Digest, Vol 47, Issue 12
To: users(a)xwiki.org
Message: 2
Date: Mon, 13 Jun 2011 12:19:19 +0300
From: Marius Dumitru Florea <mariusdumitru.florea(a)xwiki.com>
Subject: Re: [xwiki-users] Blog : windows "Content:" and "Summary
(optional):" not accessible
To: users(a)xwiki.org
Message-ID: <4DF5D617.9040301(a)xwiki.com>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Hi Yannick,
On 06/10/2011 02:39 PM, Yannick Dewilde wrote:
> Hello,
>
> When I try to post a blog, the windows "Content:" and "Summary
(optional):"
> are in loading mode all the time. It's not possible to add anything.
I guess this means the WYSIWYG editor fails to load. Can you edit a
simple wiki page in WYSIWYG edit mode? Do you have a wiki on myxwiki.org?
Hope this helps,
Marius
>
> Can you help me pls?
>
> Regards
>
> Yannick
> _______________________________________________
> users mailing list
> users(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
------------------------------
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
End of users Digest, Vol 47, Issue 12
*************************************
Hi Yannick,
You didn't answer the second question. Do you have this problem on a
wiki hosted by myxwiki.org or on a wiki hosted elsewhere. If your wiki
is hosted on myxwiki.org then you need to follow this thread
http://lists.xwiki.org/pipermail/users/2011-June/024308.html . Otherwise
you need to tell us more about your problem. What version of XWiki
Enterprise are you using? Is it a fresh install or did you upgrade
recently? Was the WYSIWYG editor working before? What browser are you
using? Does it happen on other browsers? On Firefox, do you see any
JavaScript exception logged in the Firebug console?
Hope this helps,
Marius
-------- Original Message --------
Return-Path: <yannick.dewilde(a)gmail.com>
X-Original-To: mariusdumitru.florea(a)xwiki.com
Delivered-To: mariusdumitru.florea(a)xwiki.com
Received: from mail-yx0-f178.google.com (mail-yx0-f178.google.com
[209.85.213.178]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No
client certificate requested) by borabora.xpertnet.biz (Postfix) with
ESMTP id 5D8D76601E7 for <mariusdumitru.florea(a)xwiki.com>; Mon, 13 Jun
2011 12:15:26 +0200 (CEST)
Received: by yxm8 with SMTP id 8so1763086yxm.9 for
<mariusdumitru.florea(a)xwiki.com>; Mon, 13 Jun 2011 03:15:24 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com;
s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date
:message-id:subject:from:to:content-type;
bh=9g4XSJEg18VB89KXhCUEE+Fy9FsKNpu3WDWDI5OwbE0=;
b=SXsznF3RcKfunBMiQt8ciqP0EUyBcpnweOkV1qtHT9BlpXPgE8z9Mi/EYHq0cy4vlH
atwJTAAPzUhoBa9PPNj22QDsGD8JpDhvAZf3QBIP19ousa0ynvoYh+qPezLn9PJvlSls
6Au1mBKy2jhxWraP0s4uNchXCUCW99d2uWBJY=
DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma;
h=mime-version:in-reply-to:references:date:message-id:subject:from:to
:content-type;
b=TcDsP59ApWfv4Xjck3eHTq3+mbk5Y6K5P9uRxI/ZTnen4RbTwPnhmT7c7dOWUjgWO/
hzZbypFO58oxa+aoptgvSVq8dW5PWEViHvDIXRvuilZ4/f3Ej99+ooZvsljkI7RxGACY
hboezguoMQ1V9FNjc7uhOUnYZrpt50XR7zyEg=
MIME-Version: 1.0
Received: by 10.236.191.200 with SMTP id
g48mr6974588yhn.437.1307960124156; Mon, 13 Jun 2011 03:15:24 -0700 (PDT)
Received: by 10.147.124.4 with HTTP; Mon, 13 Jun 2011 03:15:24 -0700 (PDT)
In-Reply-To: <mailman.3.1307959204.7144.users(a)xwiki.org>
References: <mailman.3.1307959204.7144.users(a)xwiki.org>
Date: Mon, 13 Jun 2011 12:15:24 +0200
Message-ID: <BANLkTim08TXUVFWBB7bo4SkdY67ziefS+g(a)mail.gmail.com>
Subject: Fwd: users Digest, Vol 47, Issue 12
From: Yannick Dewilde <yannick.dewilde(a)gmail.com>
To: mariusdumitru.florea(a)xwiki.com
Content-Type: multipart/alternative; boundary=20cf30563e6b94ab6804a595328b
Hi Marius,
No I can't edit a simple wiki page with WYSIWYG...
Thanks for your help
Yannick
---------- Forwarded message ----------
From: ** <users-request(a)xwiki.org <mailto:users-request@xwiki.org>>
Date: 2011/6/13
Subject: users Digest, Vol 47, Issue 12
To: users(a)xwiki.org <mailto:users@xwiki.org>
Message: 2
Date: Mon, 13 Jun 2011 12:19:19 +0300
From: Marius Dumitru Florea <mariusdumitru.florea(a)xwiki.com
<mailto:mariusdumitru.florea@xwiki.com>>
Subject: Re: [xwiki-users] Blog : windows "Content:" and "Summary
(optional):" not accessible
To: users(a)xwiki.org <mailto:users@xwiki.org>
Message-ID: <4DF5D617.9040301(a)xwiki.com <mailto:4DF5D617.9040301@xwiki.com>>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Hi Yannick,
On 06/10/2011 02:39 PM, Yannick Dewilde wrote:
> Hello,
>
> When I try to post a blog, the windows "Content:" and "Summary
(optional):"
> are in loading mode all the time. It's not possible to add anything.
I guess this means the WYSIWYG editor fails to load. Can you edit a
simple wiki page in WYSIWYG edit mode? Do you have a wiki on myxwiki.org
<http://myxwiki.org>?
Hope this helps,
Marius
>
> Can you help me pls?
>
> Regards
>
> Yannick
> _______________________________________________
> users mailing list
> users(a)xwiki.org <mailto:users@xwiki.org>
> http://lists.xwiki.org/mailman/listinfo/users
------------------------------
_______________________________________________
users mailing list
users(a)xwiki.org <mailto:users@xwiki.org>
http://lists.xwiki.org/mailman/listinfo/users
End of users Digest, Vol 47, Issue 12
*************************************
Hello,
When I try to post a blog, the windows "Content:" and "Summary (optional):"
are in loading mode all the time. It's not possible to add anything.
Can you help me pls?
Regards
Yannick
Hello,
Sorry if this was already told here in the list. Is there any way to
know how many users (and which ones, maybe) are currently logged in on
the wiki? If so, how can I do that and present it in a page or any other
way? I'm using XE 3.1RC1.
Regards,
--
* *
* *
*Ramon Gomes Brandão*
> Purpose: Use for College dedicated Cohert group for BS.
> User Name: ca.toomey(a)gmail.com
> Server Name: LOUIWUBS
>
> Thanks much for your consideration and support!
>
>
>
Hi,
Is there any way to update the Wysiwyg editor without updating the whole
xwiki?
I note that my xwiki version is 2.0 and I wish update the Wysiwyg to 2.6
version.
thank you.
Hi.
Is there any hope to upgrade the ancient version (XWiki Enterprise)
1.9.4 to a newer, say 2.7.x or even to 3.0.x ?
I found the archived release notes, but what steps are required? I mean
that should I upgrade from
1.94 -> 2.0 Milestone 1
2.0 Milestone 1 -> 2.0 Milestone 2
.
.
2.0.4 -> 2.0.5
.
.
2.7.1 -> 2.7.2
or could I just upgrade to 1.9.4 -> 2.7.x ?
Any help would be highly appreciated!
With Kind Regards,
Ari Takku
I am out of the office until 14-06-2011.
Voor dringende zaken kunt u terecht bij ICT-Servicedesk
Note: This is an automated response to your message "users Digest, Vol 47,
Issue 10" sent on 10-6-2011 12:00:14.
This is the only notification you will receive while this person is away.
Hi,
In our XWiki setup we are very much using RSS feeds generated by XWiki
When you capture such a feed in a news reader it shows :
<Title>
by <Author>
version <version> edited by <editor> in <date> <time>
Now is the Title informative for outsiders, the other (metadata) not...
The BLOG RSS feeds are much more informative
Where can I find information on how to setup the content presented in de RSS feed, Pictures would also be very nice
Which XWikI page is holding the code used for feeds about page-changes, which page is holding the code for the BLOG feeds?
Gerritjan
Hi Eduard,
Thank you for your reply.
About the max_allowed_packet mysql parameter, I had set it to 4M before I
got this problem, so it's not this caused the problem.
However, this morning when I tried again to import
"xwiki-enterprise-wiki-3.0.xar", I don't why I succeeded.
Anyway, without this problem I can continue my project. So thank you for
your help again and I am sure there will be more problems about xwiki that I
can't solve, in that case, I hope we can discussed again.
Thank you so much for your time!
Respectively yours,
Shayne
On Wed, Jun 8, 2011 at 8:20 PM, Eduard Moraru <eduard.moraru(a)xwiki.com>wrote:
> Hi,
>
> Please continue this discussion on the mailing list and also send your
> screenshots there.
>
> From what you have shown me, I don`t understand the first screenshot. It
> looks incomplete (left part is missing). Do you have javascript disabled?
>
> Also, you have not answered my question whether you have tried to set the
> max_allowed_packet mysql parameter.
>
> Thanks,
> Eduard
>
>
> On 06/08/2011 10:36 AM, 江舟 wrote:
>
>> Hi Eduard,
>>
>> Thank you for your reply.
>>
>> I can't see any error messages or exceptions in the console window.
>> To better identify the problem, I use two screenshots to show my problem.
>> The first one shows the picture before I click on the import button.
>> The second one shows the picture after I click on the import button.
>>
>> I don't know what is wrong with XWiki, and I hope you can give me some
>> advice.
>>
>> Thank you so much for your time! I am looking forward to your reply.
>>
>> Respectively yours,
>> Shayne
>>
>>
>