Hello,
our XWiki installation isn't running anymore. After restarting Tomcat, there
is always the stacktrace below. No change to content has been made, afaik.
Any help is most welcome. The XWiki version is 5.2.1 according to the
"version.properties" file.
Matthias
--
View this message in context: http://xwiki.475771.n2.nabble.com/General-XWiki-Exception-after-Tomcat-Star…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Dear all,
I'm new to the list and I would like to enter this community with a
little contribution from my side to thank you all for the very nice wiki
platform XWiki is. We are using it for some weeks by now and we are
finding it very nice and useful.
To install and configure XWiki for a project, I developed this Ansible
playbook:
https://github.com/rastandy/xwiki-ansible-playbook
I'm happily sharing it with you, hoping someone could find it useful.
Thank you and happy wiking,
Andrea.
--
Andrea Russo, Junior Research Associate
Fondazione CMCC
Centro Euro Mediterraneo sui Cambiamenti Climatici (http://www.cmcc.it)
Address: via Augusto Imperatore, 16 - 73100 Lecce
Phone: +39 0832 671064 - Fax: 0039 0832 671064
Dear,
I'm looking in a way to display a Masonry style page in XWiki for blog or
application.
The masonry style (often called "grid") is something like this :
http://mariustheme.tumblr.com/
// Why ?
In termes of ergonomics it show it full potential when images speak better
than text. This is why Google images and Pinterest use it.
Typical applications for XWiki could be :
- Physicial products database : the image help finding the product quicly
when not sure of the name.
- Designs database : not just an image, a design goes with some description
and data so it is usefull to link to a page.
- Physicial defects database : in industry, to quicly caracterise a defect
that appears visually on a part.
- ...
My need is for a nice looking collaborative product designs database.
This database would be one app in a Wiki that has other uses.
// The question :
What would be a simple way to make it in XWiki with a minimum coding ?
// My current search state and ideas :
I already searched the plugin database and couldn't find someting already
build. But I could have missed something.
Then, I thinked in making an app with App Within Minuts and modifing
LiveTable.
First step would be to edit the code to display only the first attachement
as a bigguer image.
It could be a quick fix waiting for the second step, more complex, to
display the LiveTable as a masonry view. There is already existing code
that could be adapted. However this would be at the limit of my few
programming skills and then taking a lot of time.
Also I'm not sure if LiveTable can be modified on the context of one
application only (not modifiing the others applications).
- If yes, would it still be possible to use Apps Within Minutes to modify
other parts of the app, not reversing the handmade code modifications ?
- If not I gess this mean I need a more complex plugin to add a "massonery
view" option to LiveTable and another option to Apps Within Minuts to
display it by default ?
This is only a XWiki beginner ideas so maybe someone has an idea of a
simpler way to do it ?
Regards
--
Thibaut DEVERAUX
+33 (0)6 75 51 20 80
Hello, I'm writing a macro extension in groovy. I need to use services
rendiring.parse () and i get an exception every time I try to use it. Can
anyone give a good example as to how to use it in a groovy script ? Thanks!
Dan.
--
View this message in context: http://xwiki.475771.n2.nabble.com/Can-t-make-a-groovy-macro-work-tp7599001.…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi,
I wanted to assess how difficult it might be to disable all javascript
execution in HTML macros on XWiki. My main concern would be to avoid
breaking any important XWiki pages that utilize javascript within the HTML
macro (as referenced here:
http://lists.xwiki.org/pipermail/users/2009-June/012226.html). Is there any
XWiki functionality that is still dependent on executing javascript via
{{html}}?
I also noticed in the comments on this JIRA issue
(https://jira.xwiki.org/browse/XRENDERING-27?jql=text%20~%20%22html%20macro%…),
Vincent Massol mentioned that wiki macros 2.0 will be designed in such a way
that we can override the HTML macro and filter out javascript usages. I was
wondering if this was still the best solution to disabling future javscript
usage within {{html}}. Thank you!
--
View this message in context: http://xwiki.475771.n2.nabble.com/Disabling-javascript-in-HTML-macro-tp7599…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi,
You can use the new version of Apache's HTTP library, as follows, hope
it'll help you.
public class RestTest {
/**
* Create and initialize the http client.
*
* @return an HttpClient object
*/
HttpClient getClient(host, port, username, password) {
HttpClient httpClient = new HttpClient();
httpClient.getParams().setAuthenticationPreemptive(true);
httpClient.getState().setCredentials(
new AuthScope(host, port, AuthScope.ANY_REALM),
new UsernamePasswordCredentials(username, password)
);
return httpClient;
}
public static void main(String[] args) throws IOException {
// Get request example
HttpClient httpClient = getClient(yourHost, yourPort, yourUsername,
yourPassword);
GetMethod getMethod = new GetMethod(getURL);
getMethod.addRequestHeader("Accept", "application/json");
getMethod.setDoAuthentication( true );
String getURL = "your get url";
try {
int status = httpClient.executeMethod(getMethod);
System.out.println(getMethod.getResponseBodyAsString());
} catch (Exception e) {
//...
} finally {
// release any connection resources used by the method
getMethod.releaseConnection();
}
// Put request example
String putURL = "your put url";
PutMethod putMethod = new PutMethod(putURL);
putMethod.addRequestHeader("Accept", "application/json");
putMethod.setDoAuthentication( true );
try {
int status = httpClient.executeMethod(putMethod);
System.out.println(putMethod.getResponseBodyAsString());
} catch (Exception e) {
// ...
} finally {
// release any connection resources used by the method
putMethod.releaseConnection();
}
}
}
Best regards,
Mohamed.
On Sun, Apr 17, 2016 at 9:24 PM, Mohamed Boussaa <mohamed.boussaa(a)xwiki.com>
wrote:
> Hi,
>
> You can use the new version of Apache's HTTP library, as follows, hope
> it'll help you.
>
> public class RestTest {
> /**
> * Create and initialize the http client.
> *
> * @return an HttpClient object
> */
> HttpClient getClient(host, port, username, password) {
> HttpClient httpClient = new HttpClient();
> httpClient.getParams().setAuthenticationPreemptive(true);
> httpClient.getState().setCredentials(
> new AuthScope(host, port, AuthScope.ANY_REALM),
> new UsernamePasswordCredentials(username, password)
> );
> return httpClient;
> }
>
> public static void main(String[] args) throws IOException {
> // Get request example
> HttpClient httpClient = getClient(yourHost, yourPort, yourUsername,
> yourPassword);
> GetMethod getMethod = new GetMethod(getURL);
> getMethod.addRequestHeader("Accept", "application/json");
> getMethod.setDoAuthentication( true );
> String getURL = "your get url";
> try {
> int status = httpClient.executeMethod(getMethod);
> System.out.println(getMethod.getResponseBodyAsString());
> } catch (Exception e) {
> //...
> } finally {
> // release any connection resources used by the method
> getMethod.releaseConnection();
> }
>
> // Put request example
> String putURL = "your put url";
> PutMethod putMethod = new PutMethod(putURL);
> putMethod.addRequestHeader("Accept", "application/json");
> putMethod.setDoAuthentication( true );
> try {
> int status = httpClient.executeMethod(putMethod);
> System.out.println(putMethod.getResponseBodyAsString());
> } catch (Exception e) {
> // ...
> } finally {
> // release any connection resources used by the method
> putMethod.releaseConnection();
> }
> }
> }
>
>
>
>
> Best regards,
> Mohamed.
>
> On Sun, Apr 17, 2016 at 7:25 PM, Tobi <gman007(a)yandex.ru> wrote:
>
>> Hello,
>>
>> I was trying to write a program which would upload new pages on my wiki. I
>> was following these instructions
>> http://platform.xwiki.org/xwiki/bin/view/Features/XWikiRESTfulAPI , but
>> unfortunately most of the examples use old version of Apache's HTTP
>> library,
>> so they are not very useful for me.
>>
>> So I decided to try writing a program by following Apache's examples, but
>> when I was testing connectivity I realised that I can't even get access to
>> admin-only pages.
>>
>> Here's my code:
>>
>> import java.io.IOException;
>> import org.apache.http.auth.AuthScope;
>> import org.apache.http.auth.UsernamePasswordCredentials;
>> import org.apache.http.client.CredentialsProvider;
>> import org.apache.http.client.methods.CloseableHttpResponse;
>> import org.apache.http.client.methods.HttpGet;
>> import org.apache.http.impl.client.BasicCredentialsProvider;
>> import org.apache.http.impl.client.CloseableHttpClient;
>> import org.apache.http.impl.client.HttpClients;
>> import org.apache.http.util.EntityUtils;
>>
>> public class RestTest {
>>
>> public static void main(String[] args) throws IOException {
>> CredentialsProvider credsProvider = new
>> BasicCredentialsProvider();
>> credsProvider.setCredentials(
>> new AuthScope(AuthScope.ANY_HOST, AuthScope.ANY_PORT,
>> AuthScope.ANY_REALM, AuthScope.ANY_SCHEME),
>> new UsernamePasswordCredentials("Tobi", "mypass"));
>> CloseableHttpClient httpclient = HttpClients.custom()
>> .setDefaultCredentialsProvider(credsProvider)
>> .build();
>> try {
>> HttpGet httpget = new
>> HttpGet("http://xwiki.aircr.ru/xwiki/bin/edit/Main/WebHome");
>>
>> System.out.println("Executing request " +
>> httpget.getRequestLine());
>> CloseableHttpResponse response = httpclient.execute(httpget);
>> try {
>>
>> System.out.println("----------------------------------------");
>> System.out.println(response.getStatusLine());
>> EntityUtils.consume(response.getEntity());
>> } finally {
>> response.close();
>> }
>> } finally {
>> httpclient.close();
>> }
>> }
>>
>> }
>>
>> It gives me:
>> Executing request GET http://xwiki.aircr.ru/xwiki/bin/edit/Main/WebHome
>> HTTP/1.1 <http://xwiki.aircr.ru/xwiki/bin/edit/Main/WebHomeHTTP/1.1>
>> ----------------------------------------
>> HTTP/1.1 401 Unauthorized
>>
>>
>> I would really appreciate any help! Also, it would be great if you show me
>> more examples of using PUT method for xWiki RESTful!
>>
>>
>>
>> --
>> View this message in context:
>> http://xwiki.475771.n2.nabble.com/xWiki-RESTful-HTTP-Connection-tp7599026.h…
>> Sent from the XWiki- Users mailing list archive at Nabble.com.
>> _______________________________________________
>> users mailing list
>> users(a)xwiki.org
>> http://lists.xwiki.org/mailman/listinfo/users
>>
>
>
Hello my fellow XWIKI-people.
I would like to create a button to generate some content.
Pseudo-code example
{{velocity}}
#set(button=false)
Click this Button causes #set(button=true)
#if($button)
script starts
#end
{{/velocity}}
Any ideas? I am pretty new to WIKI
Mit freundlichen Grüßen / Best regards
Oleg Rochlin | Werkstudent | System implementation
SSI SCHÄFER | SSI Schäfer Noell GmbH | i_Park Klingholz 18/19 | 97232 Giebelstadt | Germany
oleg.rochlin(a)ssi-schaefer.com<mailto:oleg.rochlin@ssi-schaefer.com>
Website<http://www.ssi-schaefer.de/> | Blog<http://www.ssi-schaefer.de/blog> | YouTube<http://youtube.com/lagerlogistik1> | Facebook<http://facebook.com/SSI.SCHAEFER.DE>
SSI Schäfer Noell GmbH | 97232 Giebelstadt | Germany
Incorporated in Würzburg | Commercial Register B 6936 | VAT no. DE170860279
Managing Directors: Rudolf Keller, Henricus Swinkels
Hi all,
Im running Xwiki 7.0.1 and I would like to configure LDAP Authentification.
I configured my xwiki.cfg like that http://pastebin.com/08DAw0eb
BUT I can't connect with my AD user.
Can you help me to setup this features please ?
Thanks you very much in advance.
Sébastien
Hello,
I was trying to write a program which would upload new pages on my wiki. I
was following these instructions
http://platform.xwiki.org/xwiki/bin/view/Features/XWikiRESTfulAPI , but
unfortunately most of the examples use old version of Apache's HTTP library,
so they are not very useful for me.
So I decided to try writing a program by following Apache's examples, but
when I was testing connectivity I realised that I can't even get access to
admin-only pages.
Here's my code:
import java.io.IOException;
import org.apache.http.auth.AuthScope;
import org.apache.http.auth.UsernamePasswordCredentials;
import org.apache.http.client.CredentialsProvider;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.BasicCredentialsProvider;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.util.EntityUtils;
public class RestTest {
public static void main(String[] args) throws IOException {
CredentialsProvider credsProvider = new
BasicCredentialsProvider();
credsProvider.setCredentials(
new AuthScope(AuthScope.ANY_HOST, AuthScope.ANY_PORT,
AuthScope.ANY_REALM, AuthScope.ANY_SCHEME),
new UsernamePasswordCredentials("Tobi", "mypass"));
CloseableHttpClient httpclient = HttpClients.custom()
.setDefaultCredentialsProvider(credsProvider)
.build();
try {
HttpGet httpget = new
HttpGet("http://xwiki.aircr.ru/xwiki/bin/edit/Main/WebHome");
System.out.println("Executing request " +
httpget.getRequestLine());
CloseableHttpResponse response = httpclient.execute(httpget);
try {
System.out.println("----------------------------------------");
System.out.println(response.getStatusLine());
EntityUtils.consume(response.getEntity());
} finally {
response.close();
}
} finally {
httpclient.close();
}
}
}
It gives me:
Executing request GET http://xwiki.aircr.ru/xwiki/bin/edit/Main/WebHome
HTTP/1.1
----------------------------------------
HTTP/1.1 401 Unauthorized
I would really appreciate any help! Also, it would be great if you show me
more examples of using PUT method for xWiki RESTful!
--
View this message in context: http://xwiki.475771.n2.nabble.com/xWiki-RESTful-HTTP-Connection-tp7599026.h…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi All,
i want to count over different document a $counter in velocity. Do you have
an easy way that i can store and read that value so i can use it on all
documents (with different context)?
Is there a macro for such a job? I not found anything.
Regards,
Matthias
--
View this message in context: http://xwiki.475771.n2.nabble.com/Parameter-in-different-contexts-tp7598994…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hello:
I want to upload the latest PlantUML.jar server as an attachment to the
PlantUMLMacroGClass page. The current PlantUML.jar is outdated, and is
already an attachment to this page.
I press the "chose file"button, search for the .jar file, and invariably it
stops at about 2MB with an error message that says "an error occured while
uploading plantuml.jar". What could be the problem? the file is about 5MB
Dan
--
View this message in context: http://xwiki.475771.n2.nabble.com/Uploading-jar-as-attachment-to-page-fails…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hello there. I am pretty new to XWIKI. I have some questions to LDAP and User information.
User management is currently used with LDAP. I changed user profile information and mapped fields to LDAP. Information is as usual updated once user logged in to XWIKI
I would like to know if there is any possibility to auto update user information in some time periods without pushing them to login in wiki.
Thanks!
Mit freundlichen Grüßen / Best regards
Oleg Rochlin | Werkstudent | System implementation
SSI SCHÄFER | SSI Schäfer Noell GmbH | i_Park Klingholz 18/19 | 97232 Giebelstadt | Germany
oleg.rochlin(a)ssi-schaefer.com<mailto:oleg.rochlin@ssi-schaefer.com>
Website<http://www.ssi-schaefer.de/> | Blog<http://www.ssi-schaefer.de/blog> | YouTube<http://youtube.com/lagerlogistik1> | Facebook<http://facebook.com/SSI.SCHAEFER.DE>
SSI Schäfer Noell GmbH | 97232 Giebelstadt | Germany
Incorporated in Würzburg | Commercial Register B 6936 | VAT no. DE170860279
Managing Directors: Rudolf Keller, Henricus Swinkels
From the XWiki source code, I see there is a difference in passing a document to the evenmanager:
The DocumentDeletingEvent is passing a “new XWikiDocument(doc.getDocumentReference())"
The DocumentUpdatedEvent (as an example) is passing the doc (the actual XWikiDocument)
The difference is, that the Document passed in the DeleteEvent is a new XWikiDocument and not the XWikiDocument that is about to be deleted.
Is there a reason why this difference exists?
Br,
Peter
Hello:
hyperlinks don't work in svg images. I have the following example on a page:
but you cannot click on it. You should be able to. Does it have something to
do with how xwiki renders images? or is the problem in the svg macro? I
really would like this to work.
Dan
--
View this message in context: http://xwiki.475771.n2.nabble.com/hyperlinks-in-SVG-images-tp7598960.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi there, I would like to request a wiki for our organization
Description: The organization is California Dragon Boat Association (
http://cdba.org/) and we are a non-profit helping to push the sport of
dragon boating in our community for adults, college students, and youths.
I'm hoping to create a space for all collaborators to not only keep track
of our ongoing projects and logistical planning but to also archive
historical information.
Owner Name: John Yu
Wiki Name: cdba
Much appreciated and thank you!
--
John Yu
Hi all,
I'm new to Xwiki, and I recently imported a XAR for an extension, to see
what the process would be like for airgapped instances. Unfortunately, that
extension was already installed, and that seems to have broken its status
in the extension manager. If I click uninstall from the extension manager,
i get:
Starting job of type [uninstallplan] with identifier
[extension/plan/org.xwiki.contrib:application-project-management-taskmanager/wiki:xwiki]
Extension [org.xwiki.contrib:application-project-management-taskmanager] is
not installed
Finished job of type [uninstallplan] with identifier
[extension/plan/org.xwiki.contrib:application-project-management-taskmanager/wiki:xwiki]
Manually deleteing all of the extension's pages doesn't work either. How
can I fix things so I can use extension manager for this extension again?
Hi,
@Marius: No that does not work :(
Adding .WebHome leads to the same exception:
org.xwiki.rendering.macro.MacroExecutionException: Cannot find section [HFSS.properties] in document [produkte:Synaptic.Technik.Konfigurationsdateien.WebHome]
at org.xwiki.rendering.internal.macro.include.IncludeMacro.execute(IncludeMacro.java:197)
at org.xwiki.rendering.internal.macro.include.IncludeMacro.execute(IncludeMacro.java:55)
at org.xwiki.rendering.internal.transformation.macro.MacroTransformation.transform(MacroTransformation.java:272)
at org.xwiki.rendering.internal.transformation.DefaultRenderingContext.transformInContext(DefaultRenderingContext.java:183)
at org.xwiki.rendering.internal.transformation.DefaultTransformationManager.performTransformations(DefaultTransformationManager.java:95)
at org.xwiki.display.internal.DocumentContentDisplayer.display(DocumentContentDisplayer.java:263)
at org.xwiki.display.internal.DocumentContentDisplayer.display(DocumentContentDisplayer.java:133)
at org.xwiki.display.internal.DocumentContentDisplayer.display(DocumentContentDisplayer.java:58)
at org.xwiki.display.internal.DefaultDocumentDisplayer.display(DefaultDocumentDisplayer.java:96)
Does anybody has another hint ?
I use XWiki Enterprise 8.1-milestone-1 assuming that this is a stable
Version.
Ciao
Matze
Am 07.04.2016 um 18:02 schrieb Marius Dumitru Florea:
> On Thu, Apr 7, 2016 at 6:55 PM, Matthias Barmeier <
> matthias.barmeier(a)sourcepark.de> wrote:
>
>> Hi,
>>
>> I try to embedd a table (in a section) from another wiki page. I tried to
>> use the include macro in the following form:
>>
>> {{include reference="Synaptic.Technik.Konfigurationsdateien"}}
>>
>> The whole document is embedded as expected. After adding the section
>> attribute:
>>
>>
>> {{include reference="Synaptic.Technik.Konfigurationsdateien"
>> section="HFSS.properties"/}}
>>
> Try with reference="Synaptic.Technik.Konfigurationsdateien.WebHome" . Does
> it work? See http://jira.xwiki.org/browse/XWIKI-13066
>
>
>> I get:
>> Failed to execute the [include] macro. Cause: [Cannot find section
>> [HFSS.properties] in document
>> [produkte:Synaptic.Technik.Konfigurationsdateien]]. Click on this message
>> for details.
>>
>> but the document contains the necessary heading.
>>
>> This link works perfect when added to the document:
>>
>
>> [[/etc/smd/config/FSS.properties>>Synaptic.Technik.Konfigurationsdateien||anchor="HFFS.properties"]]
>>
> The link reference is handled a bit differently (for the moment) than the
> include reference. See
> http://www.xwiki.org/xwiki/bin/view/ReleaseNotes/ReleaseNotesXWiki80#HLinks…
>
> Hope this helps,
> Marius
>
>
>> Can any body give me a hint what is wrong ?
>>
>> Thanks.
>>
>> Ciao
>>
>> Matthias
>> _______________________________________________
>> 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
--
-----------------------------------
SOURCEPARK GmbH
Dipl.-Inform. Matthias Barmeier
Geschäftsführer
Partner der Allianz für Cyber-Sicherheit
des Bundesamtes für Sicherheit in der
Informationstechnik (BSI)
Hohenzollerndamm 150
14199 Berlin
Tel: +49 (0)30/398 068 30
Fax: +49 (0)30/398 068 39
e-mail: matthias.barmeier(a)sourcepark.de
WWW: www.sourcepark.de
-----------------------------------
Sitz der Gesellschaft: Berlin
Handelsregister: Amtsgericht Berlin-Charlottenburg, HRB 80254
Geschäftsführer: Matthias Barmeier, Harald Dürr
-----------------------------------
Wichtiger Hinweis: Die vorgenannten Angaben werden jeder
E-Mail automatisch hinzugefügt und lassen keine Rückschlüsse
auf den Rechtscharakter der E-Mail zu.
Diese E-Mail kann vertrauliche und/oder rechtlich geschützte
Informationen enthalten. Wenn Sie nicht der richtige Adressat
sind oder diese E-Mail irrtümlich erhalten haben, informieren
Sie bitte sofort den Absender und vernichten Sie diese E-Mail.
Das unerlaubte Kopieren sowie die unbefugte Weitergabe
dieser E-Mail ist nicht gestattet.
Hi Users,
i programmed two years ago the Citation-Extension at
https://github.com/matthiaw/xwiki-rendering-macro-citations.
Now i found a bug in XWiki 8.x when i add on different pages the
CitationClass-Object. There is a null-pointer-exception at Line 79, see
https://github.com/matthiaw/xwiki-rendering-macro-citations/blob/master/xwi…
The Problem is that all Documents with the custom-object (doc in line 77)
are found, but the method returns an empty null-list for nested documents.
The Macro works when the Document with added XWiki.CitationClass-Objects is
NOT nested. But when it is nested then the reference looks like
Parent\.Child.WebHome. Is the Backlash the Problem? And when yes, where does
it come from?
You have any clue what i can do? Is that a bug or a mistake?
Regards,
Matthias
--
View this message in context: http://xwiki.475771.n2.nabble.com/Problem-in-Extension-tp7598895.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
I have an XWiki installation, and I noticed that emoji's were not getting
saved correctly and were rendering as question marks in XWiki. This is
caused by MySQL's default encoding which is "utf8" and not "utf8mb4"
(4-byte UTF to store the full unicode character set)
To fix this, I am in the process of converting all my MySQL database tables
into utf8mb4 encoding, which is turning out to be quite a lot of manual
work.
When XWiki creates the database tables for MySQL, can it use utf8mb4
encoding by default? Is this something I could open a bug request for?
Hi Mark,
> On 08 Apr 2016, at 23:18, Mark Bickford <mbickford(a)gmail.com> wrote:
>
> I am wondering if you are the correct person to contact regarding deleting my wiki: “mbickford.myxwiki.org”. If not, could point point me in the right direction? Thanks.
I can delete it for you. Anything you want to salvage? Do you need some XAR export for it?
Also, may I ask if there’s any specific reason you wish to delete this wiki for (for which we could do something about it)?
Thanks
-Vincent
PS: cc-ing the users list since that’s the right place where to ask
>
> -Mark
We set up a new Box with a fresh install of a 7.4.1 version. While
configuring and testing (permissions) everything all was perfect and clean.
Then we migrated the pages from the old wiki (also 7.4.1 - we wanted a fresh
install) - precisely only content pages, nothing else. Then we switched the
IP for the old domain and all of our LDAP user populated the new wiki, one
by one.
Since the fresh start all users experience the trouble that after the end of
the tomcat session (30 minutes) a re-login is required. After re-login a
XWiki message appears "you do not have the appropriate rights" (or similar).
Deletion of the cookie ~or closing the browser window and login again
reestablishes normal functions until the tomcat session is over again.
catalina.out: 2016-03-03 11:55:26,813
[https://wiki.sub.domain/xwiki/bin/view/Main/] WARN
u.i.x.MyPersistentLoginManager - Login cookie validation hash mismatch!
Cookies have been tampered with
Research in this forum did bring up discussions about the mess from 2010 and
bevor without any valuable pointers.
We updated to 7.4.2 without any change for the situation.
The site ist secure with a nginx proxy.
Any ideas?
--
View this message in context: http://xwiki.475771.n2.nabble.com/Login-cookie-validation-hash-mismatch-Coo…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi Vincent
Thanks. The viewer=children option is a usable workaround for now. The SpaceIndex option was slightly nicer because it was sortable on document title (not just location).
I was going to try editing XWiki.LiveTableResults but I couldn't work out where that was (which probably means I shouldn't touch it :-) )
Thanks again. I look forward to the final fix. Though 8.1 milestone 1 looks like will change more of the stuff we actually came to like in XWiki. But such is life. Thanks for the hard work.
Kind regards,
Mahomed Hussein
Custodian Data Centre
Email: Mahomed(a)CustodianDC.com
http://www.CustodianDC.com
-----Original Message-----
From: users [mailto:users-bounces@xwiki.org] On Behalf Of Vincent Massol
Sent: 08 April 2016 09:21
To: XWiki Users <users(a)xwiki.org>
Subject: Re: [xwiki-users] Nested pages livetable
Hi Mahomed,
> On 07 Apr 2016, at 19:01, Mahomed Hussein <Mahomed(a)CustodianDC.com> wrote:
>
> This issue has kind of bitten us as well. The table format of listing all documents in a particular space is really useful (regardless of nested pages or not). Sadly the spaceIndex (which I think is slightly different but related to this) doesn't list the new type pages.
Yes indeed, see http://jira.xwiki.org/browse/XWIKI-13239
I’ll probably take care of it in the coming days.
Thanks
-Vincent
> Kind regards,
>
>
>
> Mahomed Hussein
> Custodian Data Centre
> Email: Mahomed(a)CustodianDC.com
> http://www.CustodianDC.com
>
> -----Original Message-----
> From: users [mailto:users-bounces@xwiki.org] On Behalf Of CarlJ
> Sent: 24 March 2016 11:51
> To: users(a)xwiki.org
> Subject: Re: [xwiki-users] Nested pages livetable
>
> Hi,
>
> I hate to bug but is there no way to display the children of a page in a
> livetable, because if there isn't I am going to have restore my wiki back to
> before I upgraded from our backup.
>
> Thanks and sorry to bug.
> - Carl
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
Hi All,
I have just updated our install of our Xwiki to Version 8 from 7.1.2 and I
seem to have a problem with the new nested pages feature.
The problem I am having is with the Pages (previously called documents)
Macro that we use to list out the children of a particular page but it
doesn't seem list the pages that are using the new Nested Pages format it
only lists older format terminal page (That's what I believe they are
called).
What I wondering is this a bug or is there a new way to list nested pages in
a livetable?
--
View this message in context: http://xwiki.475771.n2.nabble.com/Nested-pages-livetable-tp7598571.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi,
I try to embedd a table (in a section) from another wiki page. I tried
to use the include macro in the following form:
{{include reference="Synaptic.Technik.Konfigurationsdateien"}}
The whole document is embedded as expected. After adding the section
attribute:
{{include reference="Synaptic.Technik.Konfigurationsdateien"
section="HFSS.properties"/}}
I get:
Failed to execute the [include] macro. Cause: [Cannot find section
[HFSS.properties] in document
[produkte:Synaptic.Technik.Konfigurationsdateien]]. Click on this
message for details.
but the document contains the necessary heading.
This link works perfect when added to the document:
[[/etc/smd/config/FSS.properties>>Synaptic.Technik.Konfigurationsdateien||anchor="HFFS.properties"]]
Can any body give me a hint what is wrong ?
Thanks.
Ciao
Matthias