Hello everyone,
I first want to thank the development team for including Ajax dynamic features onto XWiki. XWiki's simplicity and dynamics are some of the reasons why my team is so interested in implementing XWiki.
The only problem I've been having to deal with is the automatic access rights update. The cycle of rights is Blank (Default) -> Allow -> Deny -> back to Default, etc. The drawback of dynamic updates though, is that if I want to change my own right to view a certain page from "Allow" to "Default", I have to cycle through "Deny". Because of the automatic access control updating feature, when I cycle through Deny, I am automatically denied viewing rights, and thus locked out of my own page. Are there any good ways of getting around this problem? Or are there ways of implementing dropdown menus instead of square checkboxes, or having a longer delay when you cycle through access control options?
Felix
Here what we did is that we installed Xwiki from the pack jetty/HSQL.
Once it work, we modified the hibernate configuration file to connect to Oracle DB.
Here is our config file (if it helps ...) :
<?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>
<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>
<property name="connection.url">jdbc:oracle:thin:@IP.IP.IP.IP:1521:od46</property>
<property name="connection.username">xwiki</property>
<property name="connection.password">*********</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"/>
</session-factory>
</hibernate-configuration>
> -----Message d'origine-----
> De : users-bounces(a)xwiki.org [mailto:users-bounces@xwiki.org]
> De la part de Oskar Marek Rzepinski
> Envoyé : mardi 19 janvier 2010 08:13
> À : XWiki Users
> Objet : Re: [xwiki-users] Problem with getting Xwiki to work
> with Oracle10g
>
> Yes, I forgot to mention it, we copied it from the oracle
> folder, we copied
> this files:
>
> ojdbc14.jar
> orai18n.jar
>
> And we also tried it with ojdbc5.jar
>
> It getting us really crazy on this.
>
>
>
> 2010/1/19 PERINAUD Christophe <Christophe.PERINAUD(a)kbl-bank.com>
>
> > Hi,
> >
> > Maybe stupid but did you install Oracle JDBC drivers in the
> WEB-INF/lib
> > xwiki's folder ?
> >
> > Christophe Périnaud
> > Windows Server 2003 SP2 in a VMWare instance
> > Oracle 10g
> > Java 1.6.0_12
> > Xwiki 2.0.3 from the pack Jetty/HSQL
> >
> >
> > > -----Message d'origine-----
> > > De : users-bounces(a)xwiki.org [mailto:users-bounces@xwiki.org]
> > > De la part de Oskar Marek Rzepinski
> > > Envoyé : mardi 19 janvier 2010 07:58
> > > À : users(a)xwiki.org
> > > Objet : [xwiki-users] Problem with getting Xwiki to work with
> > > Oracle10g
> > >
> > > Hello everybody,
> > >
> > >
> > > we just stuck on installing xwiki on our devserver. We tried
> > > almost 10 times
> > > to get it work by ourselves but I didn't work. We still
> want to get it
> > > working. Here are the steps we did already:
> > > 1. we created a user xwiki on our DB server with the
> > > instructions from the
> > > official site
> > > 2. then we deployed xwiki on our server with the geronimo console
> > > 3. we made some changes to the hibernate configuration file,
> > > as you can see:
> > > <?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/Installation for
> > > 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>
> > >
> > > <!-- 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:@10.233.106.132:1521
> > > :devORA</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.DBCPConne
> > > ctionProvider</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"/>
> > >
> > > <property
> > > name="hibernate.query.factory_class">org.hibernate.hql.classic
> > > .ClassicQueryTranslatorFactory</property>
> > >
> > > </session-factory>
> > > </hibernate-configuration>
> > >
> > > 4. We still get this error. We can simply connect to the
> > > xwiki users on the
> > > solaris console with sqlplus, but we cannot get it work. The
> > > user for the
> > > xwiki has all privileges to work the database. We cannot
> > > understand what
> > > goes wrong. Is there a simple how to how to really xwiki
> > > working on oracle
> > > 10g? Thank you very much.
> > >
> > >
> > >
> > > 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.XWikiHibernateMigratio
> > > nManager from
> > > param xwiki.store.migration.manager.class
> > > Wrapped Exception: Error number 0 in 3: Exception while
> > > hibernate execute
> > > Wrapped Exception: invalid configuration
> > >
> > >
> > > org.apache.struts.action.RequestProcessor.processException(Req
> > > uestProcessor.java:535)
> > >
> > >
> > > org.apache.struts.action.RequestProcessor.processActionPerform
> > > (RequestProcessor.java:433)
> > >
> > >
> > > org.apache.struts.action.RequestProcessor.process(RequestProce
> > > ssor.java:236)
> > >
> > >
> > > org.apache.struts.action.ActionServlet.process(ActionServlet.j
> > > ava:1196)
> > >
> > >
> org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
> > >
> javax.servlet.http.HttpServlet.service(HttpServlet.java:693)
> > >
> javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
> > >
> > >
> > > 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(XWikiDavFi
> > > lter.java:68)
> > >
> > >
> > > com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedReq
> > > uestRestorerFilter.java:295)
> > >
> > >
> > > com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetChara
> > > cterEncodingFilter.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.XWikiHibernateMigratio
> > > nManager from
> > > param xwiki.store.migration.manager.class
> > > Wrapped Exception: Error number 0 in 3: Exception while
> > > hibernate execute
> > > Wrapped Exception: invalid configuration
> > > 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(RequestProce
> > > ssor.java:236)
> > >
> > >
> > > org.apache.struts.action.ActionServlet.process(ActionServlet.j
> > > ava:1196)
> > >
> > >
> org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
> > >
> javax.servlet.http.HttpServlet.service(HttpServlet.java:693)
> > >
> javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
> > >
> > >
> > > 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(XWikiDavFi
> > > lter.java:68)
> > >
> > >
> > > com.xpn.xwiki.web.SavedRequestRestorerFilter.doFilter(SavedReq
> > > uestRestorerFilter.java:295)
> > >
> > >
> > > com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetChara
> > > cterEncodingFilter.java:112)
> > >
> > > note The full stack trace of the root cause is available
> in the Apache
> > > Tomcat/6.0.18 logs.
> > >
> > > _____
> > >
> > >
> > > Apache Tomcat/6.0.18
> > >
> > >
> > >
> > >
> > > sincerely Oskar
> > > _______________________________________________
> > > users mailing list
> > > users(a)xwiki.org
> > > http://lists.xwiki.org/mailman/listinfo/users
> > >
> >
> >
> --------------------------------------------------------------
> ------------------
> >
> > This e-mail is intended only for the addressee named above.
> It does not
> > bind the sender, except in the case of an existing written
> convention with
> > the addressee. This e-mail may contain material that is
> confidential and
> > privileged for the sole use of the intended recipient. Any
> review, reliance
> > or distribution by others or forwarding without express
> permission is
> > strictly prohibited and may be unlawful. If you are not the intended
> > recipient, please contact the sender and delete all copies.
> >
> > While reasonable precautions have been taken to ensure that
> this e-mail and
> > any attachments are free from any computer virus or similar
> defect, no
> > liability will be accepted in that respect. Anyone
> accessing this e-mail
> > must take their own precautions as to security and virus protection.
> >
> > KBL European Private Bankers S.A., 43 boulevard Royal
> L-2955 Luxembourg,
> > R.C.S. Luxembourg B 6395, T (352) 47 97 1
> > _______________________________________________
> > 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
>
--------------------------------------------------------------------------------
This e-mail is intended only for the addressee named above. It does not bind the sender, except in the case of an existing written convention with the addressee. This e-mail may contain material that is confidential and privileged for the sole use of the intended recipient. Any review, reliance or distribution by others or forwarding without express permission is strictly prohibited and may be unlawful. If you are not the intended recipient, please contact the sender and delete all copies.
While reasonable precautions have been taken to ensure that this e-mail and any attachments are free from any computer virus or similar defect, no liability will be accepted in that respect. Anyone accessing this e-mail must take their own precautions as to security and virus protection.
KBL European Private Bankers S.A., 43 boulevard Royal L-2955 Luxembourg, R.C.S. Luxembourg B 6395, T (352) 47 97 1
Hello,
I encountered an annoying situation and am wondering what I should do...
As I wanted to enable email notifications of page updates, I entered our
SMTP server information in the wiki preferences page. As it's needed by our
server, I also entered my personal account credentials to be able to connect
to the smtp server.
The password field not being a "password" type field, it means everyone with
admin rights in the wiki can have my password, but I can live with that for
now. To see if it works, I now watch the whole wiki.
I changed my password, so I updated the page, and gracefully received my old
and new password in the notification email, in the page diff ... As well as
the other admin. My question is : does notification process check for pages
rights, meaning that if anyone registered to watch the whole wiki, did he
receive my password through his notification emails as I did, or does he
only receive notifications for updates on page he has rights on ?
Thanks,
Jeremie
Vincent,
I thought the '+' would be an issue, but my problem is not solved yet I'm
afraid
I changed the code to
* [$msg.get("xe.panels.quicklinks.infos utiles")>Infos utiles.WebHome]
And while it does send me to the correct space, the text in the panel is
still xe.panels.quicklinks.infos
utiles<http://192.168.5.165:8080/xwiki/bin/view/Infos+utiles/>instead
of Infos
Utiles ...
I would tend to believe that the $msg.get("xe.panels.quicklinks.infos
utiles") instruction does not find the information it needs, and just shows
itself instead ... which means that an information is missing somewhere in
the space paramaters ...
But I have no idea what or where it should be filled in ... !
Hello everybody,
we just stuck on installing xwiki on our devserver. We tried almost 10 times
to get it work by ourselves but I didn't work. We still want to get it
working. Here are the steps we did already:
1. we created a user xwiki on our DB server with the instructions from the
official site
2. then we deployed xwiki on our server with the geronimo console
3. we made some changes to the hibernate configuration file, as you can see:
<?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/Installation for
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>
<!-- 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:@10.233.106.132:1521
:devORA</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"/>
<property
name="hibernate.query.factory_class">org.hibernate.hql.classic.ClassicQueryTranslatorFactory</property>
</session-factory>
</hibernate-configuration>
4. We still get this error. We can simply connect to the xwiki users on the
solaris console with sqlplus, but we cannot get it work. The user for the
xwiki has all privileges to work the database. We cannot understand what
goes wrong. Is there a simple how to how to really xwiki working on oracle
10g? Thank you very much.
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: invalid configuration
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:693)
javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
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: invalid configuration
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:693)
javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
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.18 logs.
_____
Apache Tomcat/6.0.18
sincerely Oskar
Hi Sergiu,
Thanks for filing this issue as a bug & your prompt response.
> The JS code will have to be fixed, I'll work on it, see
> http://jira.xwiki.org/jira/browse/XWIKI-4773
Hi Sergiu,
Sorry about the delay in response. I checked the httpheader.
It is exactly what you had stated. It accesses the rest api & is in
the "${request.contextPath}/rest/wikis/${context.database}/search?scope=name&number=10&media=json&"
format.
Even though I am in the child wiki the ${context.database} still says
"xwiki"...It should say "draft" where draft is the name of the child
wiki.
Since, the wikis I use are path based wikis, do I need to make any
change somewhere to make the auto suggest to work. Or would I have to
go to url based wikis (with different domain names). At the same time,
I've an application which uses XWiki RESTful api without any
modifications at all despite the XEM being path based.
Please help...thanks.
>
> Message: 1
> Date: Wed, 20 Jan 2010 12:17:58 -0500
> From: Dilipkumar Jadhav <jadhav.dilipkumar(a)gmail.com>
> Subject: Re: [xwiki-users] Meta+G feature on XEM
> To: users(a)xwiki.org
> Message-ID:
> <a5b160b51001200917q6f4e7116oee4e4e59c5a4ef46(a)mail.gmail.com>
> Content-Type: text/plain; charset=ISO-8859-1
>
> Thanks for your quick response Sergiu. The wiki is a path-based wiki.
>
>
>>
>> That is strange, it should work perfectly well in a virtual wiki, and
>> you can try to see that it works on the *.xwiki.org farm, and on
>> incubator.myxwiki.org.
>>
>> You can check with Firebug or HttpHeaders to check where does the
>> suggest request go to, maybe there's something weird in the URL setup.
>>
>> Normally, the request goes to something like:
>>
>> "${request.contextPath}/rest/wikis/${context.database}/search?scope=name&number=10&media=json&"
>>
>> Here, ${request.contextPath} is usually /xwiki, and ${context.database}
>> is the name of the virtual wiki.
>>
>> Could it be that you're using a path-based virtual wiki?
>>
>> --
>> Sergiu Dumitriu
>> http://purl.org/net/sergiu/
>>
>
>
Thanks for your quick response Sergiu. The wiki is a path-based wiki.
>
> That is strange, it should work perfectly well in a virtual wiki, and
> you can try to see that it works on the *.xwiki.org farm, and on
> incubator.myxwiki.org.
>
> You can check with Firebug or HttpHeaders to check where does the
> suggest request go to, maybe there's something weird in the URL setup.
>
> Normally, the request goes to something like:
>
> "${request.contextPath}/rest/wikis/${context.database}/search?scope=name&number=10&media=json&"
>
> Here, ${request.contextPath} is usually /xwiki, and ${context.database}
> is the name of the virtual wiki.
>
> Could it be that you're using a path-based virtual wiki?
>
> --
> Sergiu Dumitriu
> http://purl.org/net/sergiu/
>
Hello folks,
The Meta+G feature is one of the coolest & widely used feature at my
organization.
I am trying to use the Meta+G/Jump To Page feature over XEM 2.1.1 "wikis".
The feature works fine over the "Main" XWiki instance. However, when I
use this from a child wiki in a wiki farm, it still picks it's pages
from the main XEM instance. It does not pickup any documents from the
child farm.
I checked the JIRA for the Meta+G feature but couldn't find any
documentation in this regard.
Can we change something in the ajaxSuggest.js so it will pick pages
from the child wikis?
Is there a page called XWiki.JumpToPage such as mentioned on
http://jira.xwiki.org/jira/browse/XWIKI-1485 where we could probably
point the ajax suggest to the appropriate child wiki. I looked up my
XWiki instance but could not find this JumpToPage.
Any help will be appreciated. Thank you.