Re: [xwiki-users] Upgrade problems xwiki 6.1 - missing attachments

2014-07-17 Thread Pascal BASTIEN
Hello, For my part, on Tomcat server on Debian, I add this step to upgrade from 6.0 to 6.1: 6.a - Of course, check the value of environment.permanentDirectory=/home/data_xwiki/ in  WEB-INF/xwiki.properties (eventualy you can remove solr and lucene subdirectory) 6.b I remove temporary directo

Re: [xwiki-users] Skip name dialog in App Within Minutes

2014-07-17 Thread vinc...@massol.net
You could also check this extension as a helper, I think it was made for a similar (if not the same) use case: http://extensions.xwiki.org/xwiki/bin/view/Extension/Unique+Identification+Number+Module Thanks -Vincent On 17 Jul 2014 at 02:04:55, Jason Clemons (jason.clem...@live.com(mailto:jas

Re: [xwiki-users] Help with Database List

2014-07-17 Thread Jason Clemons
Now that I read my post, it dawns on me that I don't really need to use "LiveTables" if that's too much of a hassle, populating the Database List based on a table in the backend DB would work just as well, has anyone done this, or have any pointers? Ultimately, I just need to devise a strategy

Re: [xwiki-users] Skip name dialog in App Within Minutes

2014-07-17 Thread Jason Clemons
Thanks Vincent, I already created some client side code which creates a UID using a random number generator and a Unix timestamp then pre-populates the modal box before it appears, so that part of the code is already squared away...at this point it's a working solution, I was just trying to fig

Re: [xwiki-users] Help with Database List

2014-07-17 Thread Jeremie BOUSQUET
Hello, You could check this page about database lists [1]. The steps could be: - create a specific class, for objects that will hold possible values for your list (manually, or with app within minutes). You don't much care about the livetable, you mainly need a form for users to create new values

Re: [xwiki-users] Skip name dialog in App Within Minutes

2014-07-17 Thread Ludovic Dubost
Hi Jason You also easily script jour own Burton using the document api and than redirection the user to the edit URL See the scripting reference documentation for the api http://platform.xwiki.org/xwiki/bin/view/SRD/Navigation Ludovic Le 17 juil. 2014 10:23, "Jason Clemons" a écrit : > Thanks

[xwiki-users] StackOverflowError after XWiki startup

2014-07-17 Thread Valdis Vītoliņš
I have installed new XWiki 6.1 instance, using Debian package. I increased Tomcat7 VM settings in /etc/default/tomcat7 to JAVA_OPTS="-Djava.awt.headless=true -Xms256m -Xmx512m -XX:MaxPermSize=256m -XX:+UseConcMarkSweepGC" But after I restart tomcat, anyway get exception: ... INFO: Deploying config

Re: [xwiki-users] StackOverflowError after XWiki startup

2014-07-17 Thread Thomas Mortagne
Are you sure it's a clean install and not an upgrade or that some leftover coulld be in /var/lib/xwiki before you do the install ? This exception usually mean you have something wrong in /var/lib/xwiki/data/extension/repository but this folder is empty the first time you start XWiki. On Thu, Jul

Re: [xwiki-users] StackOverflowError after XWiki startup

2014-07-17 Thread Valdis Vītoliņš
Thanks, Thomas, removing everything from /var/lib/xwiki/data/extension/repository folder helped. Installation was new, but not clean. Currently I have to work using proxy server which has short connection timeouts. Therefore after opening of XWiki application I lost connection during first setup wi

Re: [xwiki-users] StackOverflowError after XWiki startup

2014-07-17 Thread Thomas Mortagne
On Thu, Jul 17, 2014 at 12:31 PM, "Valdis Vītoliņš" wrote: > Thanks, Thomas, > removing everything from /var/lib/xwiki/data/extension/repository folder > helped. You should have deleted the whole /var/lib/xwiki/data folder content before doing an new install. > Installation was new, but not clea

[xwiki-users] small bug after migration from xwiki 3.4

2014-07-17 Thread Moens Patrick
Hello all, After migration 3.4 > 6.1, i got just a small bug, in the menu "Home" , the < wiki index > label doesn't appear but I got "platform.wiki.menu.wikiindex" In the wiki index module, same, all label are "plateform.wiki.browse", "plateform.wiki.browse.wikiprettyname, " plateform.wiki.br

Re: [xwiki-users] StackOverflowError after XWiki startup

2014-07-17 Thread Valdis Vītoliņš
Thanks, Thomas! I added paragraph on http://platform.xwiki.org/xwiki/bin/view/Features/DistributionWizard#HSettingupnewXWikiinstancewithoutreinstalling please check that this is correct solution. Valdis > On Thu, Jul 17, 2014 at 12:31 PM, "Valdis Vītoliņš" > wrote: >> Thanks, Thomas, >> removing

Re: [xwiki-users] StackOverflowError after XWiki startup

2014-07-17 Thread Thomas Mortagne
Thanks. Look good, I have just added a few things. On Thu, Jul 17, 2014 at 2:24 PM, "Valdis Vītoliņš" wrote: > Thanks, Thomas! > I added paragraph on > http://platform.xwiki.org/xwiki/bin/view/Features/DistributionWizard#HSettingupnewXWikiinstancewithoutreinstalling > please check that this is

Re: [xwiki-users] Help with Database List

2014-07-17 Thread Jason Clemons
I think that's exactly what I'm wanting to do..I'll give that a shot. Thanks Jeremie > On Jul 17, 2014, at 12:34 AM, "Jeremie BOUSQUET" > wrote: > > Hello, > > You could check this page about database lists [1]. > > The steps could be: > - create a specific class, for objects that will hold

Re: [xwiki-users] Help with Database List

2014-07-17 Thread Jason Clemons
Does this make each list item essentially it's own page? > On Jul 17, 2014, at 12:34 AM, "Jeremie BOUSQUET" > wrote: > > Hello, > > You could check this page about database lists [1]. > > The steps could be: > - create a specific class, for objects that will hold possible values for > your li

Re: [xwiki-users] Skip name dialog in App Within Minutes

2014-07-17 Thread Jason Clemons
Duh...that was incredibly easy. Thanks Ludovic > On Jul 17, 2014, at 1:00 AM, "Ludovic Dubost" wrote: > > Hi Jason > > You also easily script jour own Burton using the document api and than > redirection the user to the edit URL > > See the scripting reference documentation for the api > > h

Re: [xwiki-users] Help with Database List

2014-07-17 Thread Jeremie BOUSQUET
2014-07-17 17:21 GMT+02:00 Jason Clemons : > Does this make each list item essentially it's own page? > With App Within Minutes by default yes. It's also sort of default way of doing with xwiki (ie 1 object = 1 page). But it's possible to create all objects for all list items, in a unique page.

[xwiki-users] [ANN] File Manager 2.0-milestone-1 released

2014-07-17 Thread Marius Dumitru Florea
Hi everyone, I've released today a new version of the File Manager Application [1]. This application lets your organize your files inside XWiki using a tree hierarchy of folders. It supports all standard operations like move, rename, copy, delete on both files and folders. You can use drag & drop

Re: [xwiki-users] [xwiki-devs] [ANN] File Manager 2.0-milestone-1 released

2014-07-17 Thread vinc...@massol.net
This looks very nice Marius, excellent job! :) And very nicely documented! I hope our users will appreciate -Vincent  On 17 Jul 2014 at 18:45:51, Marius Dumitru Florea (mariusdumitru.flo...@xwiki.com(mailto:mariusdumitru.flo...@xwiki.com)) wrote: > Hi everyone, > > I've released today a ne

[xwiki-users] help to migrate from xwiki 2.3

2014-07-17 Thread Moens Patrick
Hello all, I finally got new environment to migrate our 'old' Xwiki 2.3 to 6.1 (oracle 11, tomcat 7,...). Fresh install is good When I migrate the db from 2.3 to 6.1, everything seems ok but not when I import the default xar 6.1. After import, every users have rights to see admin menu (in ho

Re: [xwiki-users] 6.1 upgrade issue

2014-07-17 Thread Sergiu Dumitriu
You can try to manually alter the database, run this in Oracle: alter table xwiki.xwikidoc add XWD_HIDDEN number(1,0) DEFAULT 0 not null; Then restart XWiki. Hopefully you won't get this error anymore, although you might get another one. On 07/15/2014 05:12 PM, Hu Yang wrote: > Hi, > > The err

[xwiki-users] Google Analytics missing on a subwiki

2014-07-17 Thread Aaron Hardy at AC
Hi, I have a multi-wiki farm running 5.4.3. Google Analytics is turned on in Administration, with a different GA Account for each subwiki. It works great on all but one subwiki. On the working ones, I can find the GA line in the page source: On one subwiki, that line is missing, and as such the