Thanks Thomas, my previous issue was a problem when I imported the db to the new server.
After the migration, I got this error.
Failed to execute the [velocity] macro. Cause: [The execution of the [velocity] script macro is not allowed. Check the rights of its last author or the parameters if it's rendered from another script.]. Click on this message for details.
I searched but I cant find where to set right for the velocity macro.
Can you help me a bit please ?
Sébastien
Resending as plaintext
Hi All
Hopefully someone can help with this issue.
We are running 8.1 and some users are not able to see the “create page” button. This is what I am expecting:
http://pasteboard.co/6y8jirpqd.png
Instead, the user sees this:
http://pasteboard.co/6y9FK2KQT.png
So I assumed it must be a permissions issue. So I checked that the Group had the correct permissions to Edit (in this case I am using the Sandbox as an example, but it applies to all other top level pages – what were once spaces).
As you can see below, the XWikiAllGroup has View and Edit permissions and the user can certainly see and edit the page. But I was sure that having “Edit” also meant the ability to “add” pages. If “adding” is a separate permission, please tell me where I can find this.
http://pasteboard.co/6yZBCg4ye.png
I have also tried giving the user directly ALL the permissions and still the user doesn’t get the “add” button. Yet if I browse directly to http://xwiki.local:8080/xwiki/bin/create/Sandbox/ I get the create page and I can successfully create/edit/save the page.
I have also tried:
• Giving all permissions to all the groups the user is a member of
• Different combinations of different groups
• Removing permissions for all groups and just giving the user permission directly
• Looking through the mailing list for any reported issues (though it was a quick browse so I may have missed it).
• Checked that I do not have any overriding *.vm files attached to the skin that would cause this
The next step will be to upgrade to 8.2 to see if this resolves it, but I am not hopeful. Any help would be sincerely appreciated. Thanks in advance.
Any help please?
Kind regards,
Mahomed Hussein
Custodian Data Centre
Email: Mahomed(a)CustodianDC.com
http://www.CustodianDC.com
Hello-
I am a new user and I have a question regarding changing the default method
of numbering used for numbered lists. I am attempting to use xwiki to store
our company policy, which as of now is kept in a series of individual
documents. The difficulty is that management is insistent that I maintain
the current numbering schema used for numbered lists which is in the format:
A. Item One
1. Sub-Item 1
a. Sub-Sub Item 1
While I can do so manually using the xwiki syntax this is a great deal of
work when dealing with dozens of lists within hundreds of policies. In
addition I would like to make it as easy as possible for whomever comes
after me. I believe that the css code for something like this would be
something along the lines of:
ol {list-style-type:upper-alpha;}
ol ol {list-style-type:decimal;}
ol ol ol {list-style-type:lower-alpha;}
but I am uncertain as to whether this is the proper method of implementing
this change, and if so am uncertain as to where that code would go. Any help
would be appreciated.
--
View this message in context: http://xwiki.475771.n2.nabble.com/Question-regarding-changing-default-forma…
Sent from the XWiki- Users mailing list archive at Nabble.com.
To migrate my XWiki from 7.0.1 to 8.2.1, I followed those steps :
cd /glassfish4/glassfish/domains/domain1/applications/xwiki-enterprise-web-7.0.1/\r
tar -jcvf /backup/xwiki.tar.bz2 /glassfish4/glassfish/domains/domain1/applications/xwiki-enterprise-web-7.0.1/WEB-INF/hibernate.cfg.xml /glassfish4/glassfish/domains/domain1/applications/xwiki-enterprise-web-7.0.1/WEB-INF/xwiki.cfg /glassfish4/glassfish/domains/domain1/applications/xwiki-enterprise-web-7.0.1/WEB-INF/xwiki.properties /glassfish4/glassfish/domains/domain1/applications/xwiki-enterprise-web-7.0.1/WEB-INF/classes/logback.xml /glassfish4/glassfish/domains/domain1/applications/xwiki-enterprise-web-7.0.1/WEB-INF/observation/*
mysqldump --add-drop-database --all-databases > /backup/xwiki.sql
Then I restore dit back on the next server :
mysql -e "SET FOREIGN_KEY_CHECKS=0;"
mysql -e "CREATE DATABASE IF NOT EXISTS xwiki DEFAULT CHARACTER SET utf8;"
mysql xwiki --user=root -p < xwiki.sql
mysql -e "SET FOREIGN_KEY_CHECKS=1;"
reboot
I set the right options in the xwiki.cfg but I got this problem after the migration... :(
http://pastebin.com/cS8Th8c4
Anyone can tell me what am I doing wrong ?
Should I update to an older version before upgrading to 8.2.1 ?
Sebastien
Hi community,
I implemented a customer profile holding information about customers as an
XWiki application. Now in another app I'd like to have an optional field
that can contain the customer if it is related to one. Therefor I want to
list all customers (existing pages of App 1) as dropdown values of a field
of App 2.
To illustrate what I'd like to achieve:
App 1 (holding customer information):
|-- Page "Customer 1"
|-- Page "Customer 2"
...
App 2 (holding other information but can be customer related):
|-- Page 1
|-- Field "Customer" = Dropdown of Pages of App 1 (Customer 1, Customer
2 ...)
I'm rather new in scripting in XWiki/Velocity so I'd really appreciate some
help on this :)
Regards,
Dennis
Hi,
I am currently implementing my first XWiki application and starting to
learn velocity. There is one thing that makes me mad.
There is a static list field with code "ddlProductFamily".
I try to display the items in this list in a nice way (one below the other).
Different approaches including googling didn't lead to any outcome.
#foreach ($prodFam in $ddlProductFamily)
$prodFam\\
#end
#foreach ($prodFam in $doc.display('ddlProductFamily'))
$prodFam\\
#end
On the frontend it's always empty. Other #foreach loops work fine.
I'm sure I just misunderstand something but I can't find the fault myself.
Can somebody please help me?
Thanks in advance,
Dennis
Hi,
I'm trying to implement a basic password manager as an XWiki application. I
have short text fields for username and password. In view mode the password
is replaced by ********** to hide it from prying eyes.
Now I'd like to have a button next to the username and password fields for
copying the values to the clipboard.
I found two sources:
1.
http://extensions.xwiki.org/xwiki/bin/view/Extension/Cross-browser+JavaScri…
2. https://clipboardjs.com/
As the Wiki entry (1) is rather old I tried to replace it by (2) but I'm
not sure how to insert the code exactly.
I uploaded the clipboard.min.js as an attachment to the Application code
page.
My Application sheet looks like this:
{{velocity}}
{{html wiki="true"}}
#set ($discard = $doc.use('XPass.Code.XPassClass'))
#set($theSharedPanel = $xwiki.getDocument('XPass.Code'))
<script src="$theSharedPanel.getAttachmentURL('clipboard.min.js')"></script>
(% class="xform" %)
(((
<script>
var clipboard = new Clipboard('.btn');
clipboard.on('success', function(e) {
console.log(e);
});
clipboard.on('error', function(e) {
console.log(e);
});
</script>
; <label
for="XPass.Code.XPassClass_0_sTxtName">$escapetool.xml($doc.displayPrettyName('sTxtName',
false, false))</label>
: $doc.display('sTxtName')
; <label
for="XPass.Code.XPassClass_0_sListCategory">$escapetool.xml($doc.displayPrettyName('sListCategory',
false, false))</label>
: $doc.display('sListCategory')
; <label
for="XPass.Code.XPassClass_0_sTxtURL">$escapetool.xml($doc.displayPrettyName('sTxtURL',
false, false))</label>
: $doc.display('sTxtURL')
; <label
for="XPass.Code.XPassClass_0_lTxtDesc">$escapetool.xml($doc.displayPrettyName('lTxtDesc',
false, false))</label>
: $doc.display('lTxtDesc')
; <label
for="XPass.Code.XPassClass_0_sTxtUser">$escapetool.xml($doc.displayPrettyName('sTxtUser',
false, false))</label>
: $doc.display('sTxtUser')
; <label
for="XPass.Code.XPassClass_0_sTxtPassword">$escapetool.xml($doc.displayPrettyName('sTxtPassword',
false, false))</label>
:
#if ($context.display == 'edit')
$doc.display('sTxtPassword')
#else
~*~*~*~*~*~*~*~*~*~*
#end
<button class="btn" data-clipboard-target="$doc.display('sTxtPassword')">
<img src="assets/clippy.svg" alt="Copy to clipboard">
</button>
)))
{{/html}}
{{/velocity}}
Now then pressing the "Copy to clipboard" button the clipboard is not
updated and the console shows:
"ReferenceError: Clipboard is not defined"
I'm not sure where to place the scripts to make it work so mybe someone can
enlighten me.
Regards,
Dennis
Hi,
I'm having a hard time getting XWiki (on CentOS 7 / Tomcat 8.0.33) to work
with our companies new authenticated proxy.
First of all: in general the service user I'm using can successfully
authenticate on the proxy (tested in firefox on my computer and elinks on
the Linux machine). Before we had a proxy server not requiring
authentication and that worked like a charm.
I've already tried several approaches to make the authenticated proxy work:
1. approach via catalina.properties:
http.proxyUser=USERNAME
http.proxyPassword=Pass!W0rd
https.proxyHost=proxy.address.com
https.proxyPort=8080
http.nonProxyHosts=localhost|127.*|[::1]|several other internal domain
exceptions that worked before
restarted tomcat
When accessing the extensions settings page of the XWiki instance
(/bin/admin/XWiki/XWikiPreferences?editor=globaladmin§ion=XWiki.AddExtensions)
nothing can be found.
catalina.out shows
2016-08-08 15:48:16,405 [
http://10.170.64.121/xwiki/bin/admin/XWiki/XWikiPreferences?editor=globalad…]
ERROR aultExtensionRepositoryManager - F
org.xwiki.extension.repository.search.SearchException: Failed to search
extensions based on pattern []
at
org.xwiki.extension.repository.xwiki.internal.XWikiExtensionRepository.search(XWikiExtensionRepository.java:417)
~[xwiki-commons-extension-repository-xwiki-7.4.4.
at
org.xwiki.extension.repository.xwiki.internal.XWikiExtensionRepository.search(XWikiExtensionRepository.java:434)
~[xwiki-commons-extension-repository-xwiki-7.4.4.
at
org.xwiki.extension.repository.internal.DefaultExtensionRepositoryManager.search(DefaultExtensionRepositoryManager.java:381)
[xwiki-commons-extension-api-7.4.4.ja
at
org.xwiki.extension.repository.internal.DefaultExtensionRepositoryManager.search(DefaultExtensionRepositoryManager.java:335)
[xwiki-commons-extension-api-7.4.4.ja
at
org.xwiki.extension.repository.internal.DefaultExtensionRepositoryManager.search(DefaultExtensionRepositoryManager.java:314)
[xwiki-commons-extension-api-7.4.4.ja
at
org.xwiki.extension.script.ExtensionManagerScriptService.search(ExtensionManagerScriptService.java:171)
[xwiki-platform-extension-script-7.4.4.jar:7.4.4]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
~[na:1.8.0_91]
[...]
Caused by: java.io.IOException: Invalid answer [407] from the server when
requesting [
http://extensions.xwiki.org/xwiki/rest/repository/search?start=0&number=20&…
]
at
org.xwiki.extension.repository.xwiki.internal.XWikiExtensionRepository.getRESTResource(XWikiExtensionRepository.java:245)
~[xwiki-commons-extension-repository-xwi
at
org.xwiki.extension.repository.xwiki.internal.XWikiExtensionRepository.getRESTObject(XWikiExtensionRepository.java:295)
~[xwiki-commons-extension-repository-xwiki
at
org.xwiki.extension.repository.xwiki.internal.XWikiExtensionRepository.search(XWikiExtensionRepository.java:415)
~[xwiki-commons-extension-repository-xwiki-7.4.4.
... 183 common frames omitted
407 indicates an authentication issue but the correct data is in
catalina.properties verified by using the same proxy settings in other
applications. I also tried "domain\USERNAME" followed by a tomcat restart
with the same outcome.
2. approach via separate squid instance (without authentication) that
authenticates on the parent proxy:
catalina.properties:
http.proxyHost=localhost
http.proxyPort=3128
https.proxyHost=localhost
https.proxyPort=3128
http.nonProxyHosts=localhost|127.*|[::1]|several other internal domain
exceptions that worked before
squid.conf:
http_access allow all
http_port 3128
coredump_dir /var/spool/squid
cache deny all
dns_v4_first on
cache_peer proxy.address.com parent 8080 0 no-query no-digest
no-netdb-exchange default login=USERNAME:Pass!W0rd
restarted tomcat
restarted squid
Again verified that it's working by using the squid instance in firefox and
elinks.
Again trying to access the extensions page of the XWiki instance no
extensions can be found.
Squids access.log shows:
127.0.0.1 TCP_MISS_ABORTED/000 0 POST
http://extensions.xwiki.org/xwiki/rest/repository/search - HIER_DIRECT/
104.25.106.17 -
catalina.out shows:
Caused by: java.io.IOException: Failed to request [
http://extensions.xwiki.org/xwiki/rest/repository/search]
at
org.xwiki.extension.repository.xwiki.internal.XWikiExtensionRepository.postRESTResource(XWikiExtensionRepository.java:281)
~[xwiki-commons-extension-repository-xw
at
org.xwiki.extension.repository.xwiki.internal.XWikiExtensionRepository.postRESTObject(XWikiExtensionRepository.java:304)
~[xwiki-commons-extension-repository-xwik
at
org.xwiki.extension.repository.xwiki.internal.XWikiExtensionRepository.search(XWikiExtensionRepository.java:460)
~[xwiki-commons-extension-repository-xwiki-7.4.4.
... 182 common frames omitted
Caused by: java.net.SocketTimeoutException: Read timed out
at java.net.SocketInputStream.socketRead0(Native Method)
~[na:1.8.0_91]
at
java.net.SocketInputStream.socketRead(SocketInputStream.java:116)
~[na:1.8.0_91]
at java.net.SocketInputStream.read(SocketInputStream.java:170)
~[na:1.8.0_91]
at java.net.SocketInputStream.read(SocketInputStream.java:141)
~[na:1.8.0_91]
at
org.apache.http.impl.io.SessionInputBufferImpl.streamRead(SessionInputBufferImpl.java:139)
~[httpcore-4.4.4.jar:4.4.4]
at
org.apache.http.impl.io.SessionInputBufferImpl.fillBuffer(SessionInputBufferImpl.java:155)
~[httpcore-4.4.4.jar:4.4.4]
at
org.apache.http.impl.io.SessionInputBufferImpl.readLine(SessionInputBufferImpl.java:284)
~[httpcore-4.4.4.jar:4.4.4]
at
org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(DefaultHttpResponseParser.java:140)
~[httpclient-4.5.1.jar:4.5.1]
at
org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(DefaultHttpResponseParser.java:57)
~[httpclient-4.5.1.jar:4.5.1]
at
org.apache.http.impl.io.AbstractMessageParser.parse(AbstractMessageParser.java:261)
~[httpcore-4.4.4.jar:4.4.4]
at
org.apache.http.impl.DefaultBHttpClientConnection.receiveResponseHeader(DefaultBHttpClientConnection.java:165)
~[httpcore-4.4.4.jar:4.4.4]
at
org.apache.http.protocol.HttpRequestExecutor.doReceiveResponse(HttpRequestExecutor.java:272)
~[httpcore-4.4.4.jar:4.4.4]
at
org.apache.http.protocol.HttpRequestExecutor.execute(HttpRequestExecutor.java:124)
~[httpcore-4.4.4.jar:4.4.4]
at
org.apache.http.impl.execchain.MainClientExec.execute(MainClientExec.java:271)
~[httpclient-4.5.1.jar:4.5.1]
at
org.apache.http.impl.execchain.ProtocolExec.execute(ProtocolExec.java:184)
~[httpclient-4.5.1.jar:4.5.1]
at
org.apache.http.impl.execchain.RetryExec.execute(RetryExec.java:88)
~[httpclient-4.5.1.jar:4.5.1]
at
org.apache.http.impl.execchain.RedirectExec.execute(RedirectExec.java:110)
~[httpclient-4.5.1.jar:4.5.1]
at
org.apache.http.impl.client.InternalHttpClient.doExecute(InternalHttpClient.java:184)
~[httpclient-4.5.1.jar:4.5.1]
at
org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:82)
~[httpclient-4.5.1.jar:4.5.1]
at
org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:107)
~[httpclient-4.5.1.jar:4.5.1]
at
org.xwiki.extension.repository.xwiki.internal.XWikiExtensionRepository.postRESTResource(XWikiExtensionRepository.java:278)
~[xwiki-commons-extension-repository-xw
... 184 common frames omitted
Apart from XWiki/Tomcat I don't have any issues using the company proxy
directly or via my own squid instance.
I hope somebody can help me out here.
Regards,
Dennis
Hi,
You can use a SSX object to overwriting CSS instruction:
http://platform.xwiki.org/xwiki/bin/view/DevGuide/SkinExtensionsTutorial#HM…
On my xwiki I use this extension:
http://extensions.xwiki.org/xwiki/bin/view/Extension/Numbered+Headings
I modified the SSX object to displaynumbered lists like this:
A. Item One
A.1. Sub-Item 1
A.1.1 Sub-Sub Item 1
If you want I can send you my CSS code.
Pascal B
--------------------------------------------
En date de : Ven 5.8.16, rlarkin <rdlarkin(a)washeriff.net> a écrit :
Objet: [xwiki-users] Question regarding changing default format of Numbered Lists
À: users(a)xwiki.org
Date: Vendredi 5 août 2016, 18h06
Hello-
I am a new user and I have a question regarding changing the
default method
of numbering used for numbered lists. I am attempting to use
xwiki to store
our company policy, which as of now is kept in a series of
individual
documents. The difficulty is that management is insistent
that I maintain
the current numbering schema used for numbered lists which
is in the format:
A. Item One
1. Sub-Item 1
a. Sub-Sub Item 1
While I can do so manually using the xwiki syntax this is a
great deal of
work when dealing with dozens of lists within hundreds of
policies. In
addition I would like to make it as easy as possible for
whomever comes
after me. I believe that the css code for something like
this would be
something along the lines of:
ol {list-style-type:upper-alpha;}
ol ol {list-style-type:decimal;}
ol ol ol {list-style-type:lower-alpha;}
but I am uncertain as to whether this is the proper method
of implementing
this change, and if so am uncertain as to where that code
would go. Any help
would be appreciated.
--
View this message in context: http://xwiki.475771.n2.nabble.com/Question-regarding-changing-default-forma…
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,
I want to create a wiki link which opens the current page in a given language. I tried the following:
{{velocity}} [[English>>doc:$doc.fullName/?language=en]]{{/velocity}}
But it does not work, it generates a create page link. I could not find anything on http://platform.xwiki.org/xwiki/bin/view/Main/XWikiSyntax?syntax=2.1§io… either.
How may I achieve this? Thank you.
Mario
The wiki will be used for low-volume updates and discussions on projects of non-profit organisation.
The owner name is aveq_consexec
Requested wiki name is aves
Best,
Isaac
Isaac Stethem
Conseiller à l’exécutif | Advisor to the Executive
Association pour la voix étudiante au Québec | Association for the Voice of Education in Québec
1-888-994-9177 x1
cons.exec(a)aveq-nous.ca
Les bureaux de l’AVEQ sont situés sur des terres Kanien’kehá:ka occupées
The AVEQ offices are located on occupied Kanien’kehá:ka territory
Hello,
I am trying to control access to XWiki based on the incoming IP address.
Currently, I have the wiki set up to allow view access to everyone
including guests, and write access to logged in users. This works fine on
the local LAN, but I'd like to allow external users access to the wiki as
well. I would like to force users accessing the Wiki from outside my
network to log on before they can view Wiki pages.
There doesn't seem to be any build in mechanism for filtering access by IP.
Is there a work-around that would let me to this?
Thanks.
Hello:
What would need to happen (install engine?) for me to be able to do the
following:
{{script language="javascript"}}
{{/sript}}
in other words, server side javascript
Dan
--
View this message in context: http://xwiki.475771.n2.nabble.com/Using-Javascript-as-a-scripting-language-…
Sent from the XWiki- Users mailing list archive at Nabble.com.
To whom it may concern:
I am sending this mail to request a new wiki on myxwiki.org <http://myxwiki.org/>.
Description: wiki for a small group to keep information on system admin, development and other misc. info
Owner name: chomg
wiki name: chomg.myxwiki.org <http://chomg.myxwiki.org/>
Thanks in advance.
Best,
Mike
Hello everyone , actually I wanted to know , what all are the programming
languages that would be beneficial for GSoC . I will be taking part in GSoC
next year and I have pretty good hands in java . So I just wanted your
advice regarding that as I am new to this group
On Thu, Aug 4, 2016 at 8:11 PM, <users-request(a)xwiki.org> wrote:
> 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. [myxwiki] XWiki Enterprise 8.2.1 Upgrade (Thomas Mortagne)
> 2. Re: Xwiki on Debian 8 + Tomcat7 - GRAVE: "IOException
> (St?phane LASSIRE)
> 3. Re: Xwiki on Debian 8 + Tomcat7 - GRAVE: "IOException
> (Thomas Mortagne)
> 4. How to create a link to a page translation? (Hofst?tter Mario)
> 5. [ANN] Contrib Parent pom 6.4-3 (Thomas Mortagne)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Thu, 4 Aug 2016 12:14:46 +0200
> From: Thomas Mortagne <thomas.mortagne(a)xwiki.com>
> To: XWiki Users <users(a)xwiki.org>, XWiki Developers <devs(a)xwiki.org>
> Subject: [xwiki-users] [myxwiki] XWiki Enterprise 8.2.1 Upgrade
> Message-ID:
> <CAPnKnLGTst4CHWB6PMND-o5zOFYWemiybG6Ns7pnjZx_ej68pA@
> mail.gmail.com>
> Content-Type: text/plain; charset=UTF-8
>
> Hi everyone,
>
> myxwiki.org has been upgraded to XE 8.2.1. If you own a wiki hosted
> there you should have a look at the release notes for this version at:
> http://www.xwiki.org/xwiki/bin/view/ReleaseNotes/
>
> You should automatically get an upgrade wizard for your wiki when you
> login as admin.
> For more details see the upgrade guide available at :
> http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Upgrade#
> HUpgradingwikidocuments
>
> To be notified of the myxwiki.org server upgrade you can follow
> myxwiki on twitter:
> http://twitter.com/myxwiki
>
> Thanks,
> -XWiki Community
>
>
> ------------------------------
>
> Message: 2
> Date: Thu, 4 Aug 2016 13:09:46 +0200 (CEST)
> From: St?phane LASSIRE <slassire(a)cesap.asso.fr>
> To: "XWiki Users" <users(a)xwiki.org>
> Subject: Re: [xwiki-users] Xwiki on Debian 8 + Tomcat7 - GRAVE:
> "IOException
> Message-ID: <007d01d1ee40$d2d3d270$787b7750$(a)cesap.asso.fr>
> Content-Type: text/plain; charset="utf-8"
>
> Hello Thomas,
>
> Well, this is strange story.
>
> For persistent session I found a tip here : uncomment the rule in
> context.xml :
>
> <Context>
>
> <!-- Default set of monitored resources -->
> <WatchedResource>WEB-INF/web.xml</WatchedResource>
>
> <!-- Uncomment this to disable session persistence across Tomcat
> restarts -->
> <Manager pathname="" />
> <!--
> <Manager pathname="" />
> -->
> **end of context.xml**
> And it is OK
>
> The answer to your question :
>
> root@CESAP-WIKI01:/usr/lib/xwiki/WEB-INF/lib# ll
> xwiki-platform-container-*
> -rw-r--r-- 1 root root 24971 juil. 29 17:26
> xwiki-platform-container-api-8.2.1.jar
> -rw-r--r-- 1 root root 35318 juil. 29 17:26
> xwiki-platform-container-servlet-8.2.1.jar
>
> The jar file is there.
>
> Could it be a problem with tomcat 7.0.56 ?
> Will it be easier for me to migrate to tomcat8 ? and put away the tomcat7
> unstable
>
> Thanks
>
> Cordialement
>
> St?phane Lassire
> Charg? de l'informatique et de la communication
> T?l direct : 01 42 85 81 87
> Courriel : slassire(a)cesap.asso.fr
>
>
> -----Message d'origine-----
> De : users [mailto:users-bounces@xwiki.org] De la part de Thomas Mortagne
> Envoy? : jeudi 4 ao?t 2016 11:51
> ? : XWiki Users
> Objet : Re: [xwiki-users] Xwiki on Debian 8 + Tomcat7 - GRAVE: "IOException
>
> Ok this time it's a very different error which indeed looks more serious.
> But it still seems related to persistent storage of the session and in this
> case it seems to be trying to load a saved request (which is really not the
> kind of thing that make sense to store). For me your Tomcat is in a pretty
> weird state and try to load stuff that don't make much sense in the context
> of XWiki but I don't know anything about persistent storage. Seems to be to
> have something to clean somewhere and some option to disable (if it's still
> enabled).
>
> Tomcat cannot find the class
> org.xwiki.container.servlet.filters.SavedRequestManager$SavedRequest
> which is supposed to be located in jar
> /usr/lib/xwiki/WEB-INF/lib/xwiki-platform-container-servlet-<version>.jar.
>
> You should probably check if you have this jar file and if tomcat is
> allowed
> to read it.
>
> On Thu, Aug 4, 2016 at 11:42 AM, St?phane LASSIRE <slassire(a)cesap.asso.fr>
> wrote:
> > Hello Thomas,
> >
> > THanks for your help.
> >
> > That's the strange behaviour.
> > Catalina log file came with lot of messages from solr (some indexing
> > problems), but I do have on the browser only a blank page.
> >
> > I just changed the Xmx java tuning from 512 to 1024 (I though it was
> > may be a memory error).
> > But same behaviour : on launching a percentage on the browser from 12
> > to 50% and a blank page.
> >
> > Last Catalina :
> > ao?t 04, 2016 11:36:12 AM
> > org.apache.catalina.startup.ClassLoaderFactory
> > validateFile
> > AVERTISSEMENT: Problem with directory
> > [/usr/share/tomcat7/common/classes],
> > exists: [false], isDirectory: [false], canRead: [false] ao?t 04, 2016
> > 11:36:12 AM org.apache.catalina.startup.ClassLoaderFactory
> > validateFile
> > AVERTISSEMENT: Problem with directory [/usr/share/tomcat7/common],
> exists:
> > [false], isDirectory: [false], canRead: [false] ao?t 04, 2016 11:36:12
> > AM org.apache.catalina.startup.ClassLoaderFactory
> > validateFile
> > AVERTISSEMENT: Problem with directory
> > [/usr/share/tomcat7/server/classes],
> > exists: [false], isDirectory: [false], canRead: [false] ao?t 04, 2016
> > 11:36:12 AM org.apache.catalina.startup.ClassLoaderFactory
> > validateFile
> > AVERTISSEMENT: Problem with directory [/usr/share/tomcat7/server],
> exists:
> > [false], isDirectory: [false], canRead: [false] ao?t 04, 2016 11:36:12
> > AM org.apache.catalina.startup.ClassLoaderFactory
> > validateFile
> > AVERTISSEMENT: Problem with directory
> > [/usr/share/tomcat7/shared/classes],
> > exists: [false], isDirectory: [false], canRead: [false] ao?t 04, 2016
> > 11:36:12 AM org.apache.catalina.startup.ClassLoaderFactory
> > validateFile
> > AVERTISSEMENT: Problem with directory [/usr/share/tomcat7/shared],
> exists:
> > [false], isDirectory: [false], canRead: [false] ao?t 04, 2016 11:36:12
> > AM org.apache.coyote.AbstractProtocol init
> > INFOS: Initializing ProtocolHandler ["http-bio-8080"] ao?t 04, 2016
> > 11:36:12 AM org.apache.catalina.startup.Catalina load
> > INFOS: Initialization processed in 720 ms ao?t 04, 2016 11:36:12 AM
> > org.apache.catalina.core.StandardService
> > startInternal
> > INFOS: D?marrage du service Catalina
> > ao?t 04, 2016 11:36:12 AM org.apache.catalina.core.StandardEngine
> > startInternal
> > INFOS: Starting Servlet Engine: Apache Tomcat/7.0.56 (Debian) ao?t 04,
> > 2016 11:36:12 AM org.apache.catalina.startup.HostConfig
> > deployDescriptor
> > INFOS: D?ploiement du descripteur de configuration
> > /etc/tomcat7/Catalina/localhost/xwiki.xml
> > 2016-08-04 11:36:32,385 [localhost-startStop-1] WARN
> > ltInstalledExtensionRepository - Invalid extension
> > [org.xwiki.enterprise:xwiki-enterprise-ui-mainwiki-7.1.2] on namespace
> > [wiki:xwiki] (InvalidExtensionException: No compatible extension is
> > installed for dependency
> > [org.xwiki.platform:xwiki-platform-chart-plugin-7.1.2])
> > 2016-08-04 11:36:32,403 [localhost-startStop-1] WARN
> > ltInstalledExtensionRepository - Invalid extension
> > [org.xwiki.contrib.forum:application-forum-ui-1.9.4]
> > (InvalidExtensionException: No compatible extension is installed for
> > dependency [org.xwiki.platform:xwiki-platform-ratings-api-6.4.4])
> > 2016-08-04 11:36:32,404 [localhost-startStop-1] WARN
> > ltInstalledExtensionRepository - Invalid extension
> > [org.xwiki.platform:xwiki-platform-search-lucene-ui-6.4.2] on
> > namespace [wiki:xwiki] (InvalidExtensionException: No compatible
> > extension is installed for dependency
> > [org.xwiki.platform:xwiki-platform-search-lucene-api-6.4.2])
> > 2016-08-04 11:36:35,578 [localhost-startStop-1] INFO
> > o.x.s.s.i.EmbeddedSolrInstance - Starting embedded Solr server...
> > 2016-08-04 11:36:35,578 [localhost-startStop-1] INFO
> > o.x.s.s.i.EmbeddedSolrInstance - Using Solr home directory:
> > [/var/lib/xwiki/data/solr]
> > 2016-08-04 11:36:39,896 [localhost-startStop-1] INFO
> > o.x.s.s.i.EmbeddedSolrInstance - Started embedded Solr server.
> > ao?t 04, 2016 11:36:40 AM org.apache.catalina.session.StandardManager
> > doLoad
> >
> > GRAVE: "ClassNotFoundException" lors du chargement de sessions
> > persistantes:
> > java.lang.ClassNotFoundException:
> > org.xwiki.container.servlet.filters.SavedRequestManager$SavedRequest
> > java.lang.ClassNotFoundException:
> > org.xwiki.container.servlet.filters.SavedRequestManager$SavedRequest
> > at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
> > at java.lang.Thread.run(Thread.java:745)
> >
> > ao?t 04, 2016 11:36:40 AM org.apache.catalina.session.StandardManager
> > startInternal
> > GRAVE: Exception au chargement des sessions depuis le stockage
> > persistant (persistent storage)
> > java.lang.ClassNotFoundException:
> > org.xwiki.container.servlet.filters.SavedRequestManager$SavedRequest
> > at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
> > at java.lang.Thread.run(Thread.java:745)
> >
> > Cordialement
> >
> > St?phane Lassire
> > Courriel : slassire(a)cesap.asso.fr
> >
> >
> > -----Message d'origine-----
> > De : users [mailto:users-bounces@xwiki.org] De la part de Thomas
> > Mortagne Envoy? : jeudi 4 ao?t 2016 11:03 ? : XWiki Users Objet : Re:
> > [xwiki-users] Xwiki on Debian 8 + Tomcat7 - GRAVE: "IOException
> >
> > It's the first time I see this error.
> >
> > Not even sure what a persistent session is. Maybe Tomcat is configured
> > to stored the session on disk to get it back when restarting and
> > something put a not serializable object
> > (DefaultStringEntityReferenceResolver
> > which is indeed not serializable) in it.
> >
> > Is XWiki running properly after that ? Even if it's indicated GRAVE it
> > seems to me you just lost this part of the session but XWiki does not
> > really expect the session to be serailized anyway so you should
> > probably disable that if possible.
> >
> >
> > _______________________________________________
> > users mailing list
> > users(a)xwiki.org
> > http://lists.xwiki.org/mailman/listinfo/users
>
>
>
> --
> Thomas Mortagne
> _______________________________________________
> users mailing list
> users(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
>
>
> ------------------------------
>
> Message: 3
> Date: Thu, 4 Aug 2016 14:22:04 +0200
> From: Thomas Mortagne <thomas.mortagne(a)xwiki.com>
> To: XWiki Users <users(a)xwiki.org>
> Subject: Re: [xwiki-users] Xwiki on Debian 8 + Tomcat7 - GRAVE:
> "IOException
> Message-ID:
> <CAPnKnLGN7HUc984H621sZUVwng4-QnfhXr3PVS-NscMnAMa1+Q@mail.
> gmail.com>
> Content-Type: text/plain; charset=UTF-8
>
> I'm still using Tomcat 7 (7.0.52 on Ubuntu 14.04) and I never had this
> kind of issue.
>
> On Thu, Aug 4, 2016 at 1:09 PM, St?phane LASSIRE <slassire(a)cesap.asso.fr>
> wrote:
> > Hello Thomas,
> >
> > Well, this is strange story.
> >
> > For persistent session I found a tip here : uncomment the rule in
> > context.xml :
> >
> > <Context>
> >
> > <!-- Default set of monitored resources -->
> > <WatchedResource>WEB-INF/web.xml</WatchedResource>
> >
> > <!-- Uncomment this to disable session persistence across Tomcat
> > restarts -->
> > <Manager pathname="" />
> > <!--
> > <Manager pathname="" />
> > -->
> > **end of context.xml**
> > And it is OK
> >
> > The answer to your question :
> >
> > root@CESAP-WIKI01:/usr/lib/xwiki/WEB-INF/lib# ll
> xwiki-platform-container-*
> > -rw-r--r-- 1 root root 24971 juil. 29 17:26
> > xwiki-platform-container-api-8.2.1.jar
> > -rw-r--r-- 1 root root 35318 juil. 29 17:26
> > xwiki-platform-container-servlet-8.2.1.jar
> >
> > The jar file is there.
> >
> > Could it be a problem with tomcat 7.0.56 ?
> > Will it be easier for me to migrate to tomcat8 ? and put away the
> tomcat7
> > unstable
> >
> > Thanks
> >
> > Cordialement
> >
> > St?phane Lassire
> > Charg? de l'informatique et de la communication
> > T?l direct : 01 42 85 81 87
> > Courriel : slassire(a)cesap.asso.fr
> >
> >
> > -----Message d'origine-----
> > De : users [mailto:users-bounces@xwiki.org] De la part de Thomas
> Mortagne
> > Envoy? : jeudi 4 ao?t 2016 11:51
> > ? : XWiki Users
> > Objet : Re: [xwiki-users] Xwiki on Debian 8 + Tomcat7 - GRAVE:
> "IOException
> >
> > Ok this time it's a very different error which indeed looks more serious.
> > But it still seems related to persistent storage of the session and in
> this
> > case it seems to be trying to load a saved request (which is really not
> the
> > kind of thing that make sense to store). For me your Tomcat is in a
> pretty
> > weird state and try to load stuff that don't make much sense in the
> context
> > of XWiki but I don't know anything about persistent storage. Seems to be
> to
> > have something to clean somewhere and some option to disable (if it's
> still
> > enabled).
> >
> > Tomcat cannot find the class
> > org.xwiki.container.servlet.filters.SavedRequestManager$SavedRequest
> > which is supposed to be located in jar
> > /usr/lib/xwiki/WEB-INF/lib/xwiki-platform-container-
> servlet-<version>.jar.
> >
> > You should probably check if you have this jar file and if tomcat is
> allowed
> > to read it.
> >
> > On Thu, Aug 4, 2016 at 11:42 AM, St?phane LASSIRE <
> slassire(a)cesap.asso.fr>
> > wrote:
> >> Hello Thomas,
> >>
> >> THanks for your help.
> >>
> >> That's the strange behaviour.
> >> Catalina log file came with lot of messages from solr (some indexing
> >> problems), but I do have on the browser only a blank page.
> >>
> >> I just changed the Xmx java tuning from 512 to 1024 (I though it was
> >> may be a memory error).
> >> But same behaviour : on launching a percentage on the browser from 12
> >> to 50% and a blank page.
> >>
> >> Last Catalina :
> >> ao?t 04, 2016 11:36:12 AM
> >> org.apache.catalina.startup.ClassLoaderFactory
> >> validateFile
> >> AVERTISSEMENT: Problem with directory
> >> [/usr/share/tomcat7/common/classes],
> >> exists: [false], isDirectory: [false], canRead: [false] ao?t 04, 2016
> >> 11:36:12 AM org.apache.catalina.startup.ClassLoaderFactory
> >> validateFile
> >> AVERTISSEMENT: Problem with directory [/usr/share/tomcat7/common],
> exists:
> >> [false], isDirectory: [false], canRead: [false] ao?t 04, 2016 11:36:12
> >> AM org.apache.catalina.startup.ClassLoaderFactory
> >> validateFile
> >> AVERTISSEMENT: Problem with directory
> >> [/usr/share/tomcat7/server/classes],
> >> exists: [false], isDirectory: [false], canRead: [false] ao?t 04, 2016
> >> 11:36:12 AM org.apache.catalina.startup.ClassLoaderFactory
> >> validateFile
> >> AVERTISSEMENT: Problem with directory [/usr/share/tomcat7/server],
> exists:
> >> [false], isDirectory: [false], canRead: [false] ao?t 04, 2016 11:36:12
> >> AM org.apache.catalina.startup.ClassLoaderFactory
> >> validateFile
> >> AVERTISSEMENT: Problem with directory
> >> [/usr/share/tomcat7/shared/classes],
> >> exists: [false], isDirectory: [false], canRead: [false] ao?t 04, 2016
> >> 11:36:12 AM org.apache.catalina.startup.ClassLoaderFactory
> >> validateFile
> >> AVERTISSEMENT: Problem with directory [/usr/share/tomcat7/shared],
> exists:
> >> [false], isDirectory: [false], canRead: [false] ao?t 04, 2016 11:36:12
> >> AM org.apache.coyote.AbstractProtocol init
> >> INFOS: Initializing ProtocolHandler ["http-bio-8080"] ao?t 04, 2016
> >> 11:36:12 AM org.apache.catalina.startup.Catalina load
> >> INFOS: Initialization processed in 720 ms ao?t 04, 2016 11:36:12 AM
> >> org.apache.catalina.core.StandardService
> >> startInternal
> >> INFOS: D?marrage du service Catalina
> >> ao?t 04, 2016 11:36:12 AM org.apache.catalina.core.StandardEngine
> >> startInternal
> >> INFOS: Starting Servlet Engine: Apache Tomcat/7.0.56 (Debian) ao?t 04,
> >> 2016 11:36:12 AM org.apache.catalina.startup.HostConfig
> >> deployDescriptor
> >> INFOS: D?ploiement du descripteur de configuration
> >> /etc/tomcat7/Catalina/localhost/xwiki.xml
> >> 2016-08-04 11:36:32,385 [localhost-startStop-1] WARN
> >> ltInstalledExtensionRepository - Invalid extension
> >> [org.xwiki.enterprise:xwiki-enterprise-ui-mainwiki-7.1.2] on namespace
> >> [wiki:xwiki] (InvalidExtensionException: No compatible extension is
> >> installed for dependency
> >> [org.xwiki.platform:xwiki-platform-chart-plugin-7.1.2])
> >> 2016-08-04 11:36:32,403 [localhost-startStop-1] WARN
> >> ltInstalledExtensionRepository - Invalid extension
> >> [org.xwiki.contrib.forum:application-forum-ui-1.9.4]
> >> (InvalidExtensionException: No compatible extension is installed for
> >> dependency [org.xwiki.platform:xwiki-platform-ratings-api-6.4.4])
> >> 2016-08-04 11:36:32,404 [localhost-startStop-1] WARN
> >> ltInstalledExtensionRepository - Invalid extension
> >> [org.xwiki.platform:xwiki-platform-search-lucene-ui-6.4.2] on
> >> namespace [wiki:xwiki] (InvalidExtensionException: No compatible
> >> extension is installed for dependency
> >> [org.xwiki.platform:xwiki-platform-search-lucene-api-6.4.2])
> >> 2016-08-04 11:36:35,578 [localhost-startStop-1] INFO
> >> o.x.s.s.i.EmbeddedSolrInstance - Starting embedded Solr server...
> >> 2016-08-04 11:36:35,578 [localhost-startStop-1] INFO
> >> o.x.s.s.i.EmbeddedSolrInstance - Using Solr home directory:
> >> [/var/lib/xwiki/data/solr]
> >> 2016-08-04 11:36:39,896 [localhost-startStop-1] INFO
> >> o.x.s.s.i.EmbeddedSolrInstance - Started embedded Solr server.
> >> ao?t 04, 2016 11:36:40 AM org.apache.catalina.session.StandardManager
> >> doLoad
> >>
> >> GRAVE: "ClassNotFoundException" lors du chargement de sessions
> >> persistantes:
> >> java.lang.ClassNotFoundException:
> >> org.xwiki.container.servlet.filters.SavedRequestManager$SavedRequest
> >> java.lang.ClassNotFoundException:
> >> org.xwiki.container.servlet.filters.SavedRequestManager$SavedRequest
> >> at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
> >> at java.lang.Thread.run(Thread.java:745)
> >>
> >> ao?t 04, 2016 11:36:40 AM org.apache.catalina.session.StandardManager
> >> startInternal
> >> GRAVE: Exception au chargement des sessions depuis le stockage
> >> persistant (persistent storage)
> >> java.lang.ClassNotFoundException:
> >> org.xwiki.container.servlet.filters.SavedRequestManager$SavedRequest
> >> at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
> >> at java.lang.Thread.run(Thread.java:745)
> >>
> >> Cordialement
> >>
> >> St?phane Lassire
> >> Courriel : slassire(a)cesap.asso.fr
> >>
> >>
> >> -----Message d'origine-----
> >> De : users [mailto:users-bounces@xwiki.org] De la part de Thomas
> >> Mortagne Envoy? : jeudi 4 ao?t 2016 11:03 ? : XWiki Users Objet : Re:
> >> [xwiki-users] Xwiki on Debian 8 + Tomcat7 - GRAVE: "IOException
> >>
> >> It's the first time I see this error.
> >>
> >> Not even sure what a persistent session is. Maybe Tomcat is configured
> >> to stored the session on disk to get it back when restarting and
> >> something put a not serializable object
> >> (DefaultStringEntityReferenceResolver
> >> which is indeed not serializable) in it.
> >>
> >> Is XWiki running properly after that ? Even if it's indicated GRAVE it
> >> seems to me you just lost this part of the session but XWiki does not
> >> really expect the session to be serailized anyway so you should
> >> probably disable that if possible.
> >>
> >>
> >> _______________________________________________
> >> users mailing list
> >> users(a)xwiki.org
> >> http://lists.xwiki.org/mailman/listinfo/users
> >
> >
> >
> > --
> > Thomas Mortagne
> > _______________________________________________
> > 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
>
>
>
> --
> Thomas Mortagne
>
>
> ------------------------------
>
> Message: 4
> Date: Thu, 4 Aug 2016 14:14:26 +0000
> From: Hofst?tter Mario <Mario.Hofstaetter(a)automationx.com>
> To: "users(a)xwiki.org" <users(a)xwiki.org>
> Subject: [xwiki-users] How to create a link to a page translation?
> Message-ID:
> <E9FF2BDE6BD0C34D903C19E1B596E80F44C3A3BC(a)08GR54.gawgroup.com>
> Content-Type: text/plain; charset="iso-8859-1"
>
> Hello,
>
> I want to create a wiki link which opens the current page in a given
> language. I tried the following:
> {{velocity}} [[English>>doc:$doc.fullName/?language=en]]{{/velocity}}
>
> But it does not work, it generates a create page link. I could not find
> anything on http://platform.xwiki.org/xwiki/bin/view/Main/
> XWikiSyntax?syntax=2.1§ion=Links either.
> How may I achieve this? Thank you.
> Mario
>
>
> ------------------------------
>
> Message: 5
> Date: Thu, 4 Aug 2016 16:41:53 +0200
> From: Thomas Mortagne <thomas.mortagne(a)xwiki.com>
> To: XWiki Developers <devs(a)xwiki.org>, XWiki Users <users(a)xwiki.org>
> Subject: [xwiki-users] [ANN] Contrib Parent pom 6.4-3
> Message-ID:
> <CAPnKnLG1dFJ1qC9+Xvn60xSs0ePH_39gPU9vsE89H5G0+
> xqPoA(a)mail.gmail.com>
> Content-Type: text/plain; charset=UTF-8
>
> I just released a 6.4-3 version of the Contrib Parent pom. Mostly
> merged improvement I made in the 7.4 branch.
>
> --
> Thomas Mortagne
>
>
> ------------------------------
>
> Subject: Digest Footer
>
> _______________________________________________
> users mailing list
> users(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
>
>
> ------------------------------
>
> End of users Digest, Vol 109, Issue 11
> **************************************
>
I have xwiki version 8.1. And when I rename page (not the page title) all
pages that refers to this page, will contain renamed link which is OK, but
what is wrong is that the page will become modified by the XWikiGuest user
and in the history there's comment with "Renamed back-links."
This modification has bad consequences. I've noticed this unwanted
behaviour on the Menu with global visibility, wich has lost after renaming
page that is mentioned in the menu.
I'm not able to test this issue against latest version 8.2.1. Can anyone
confirm that this has been fixed in the latest version?
The simplest scenario is to have two pages,where one is referring to
another.
1. Page1 --> Page2, where Page1 has a link to Page2 and Page2 will have
backlink to Page1
2. Rename Page2 to something else (leave all options as they are), for
example Page2a
3. Page1 should have a link to a Page2a and it should become modified by
XWikiGuest user
Thanks
Miroslav Galajda
I just released an extension to easily add support for Let's Encrypt
in your wiki.
The extension automatically register Let's Encrypt root certificate in
the trust store at runtime to allow you to request Let's Encrypt
signed HTTP servers.
See http://extensions.xwiki.org/xwiki/bin/view/Extension/Let%27s+Encrypt+suppor…
--
Thomas Mortagne
Hello,
I am on the way to finish the migration of our xwiki 7 to xwiki 8 on a
Debian server.
Yesterday Thomas find the tip for solr.
Now solr is running (the directory grows after tomcat running)
But when tomcat is launch, on the browser I saw a percentage (12 / 25 / 50%)
and a blank page.
The tomcat Catalina error is :
août 04, 2016 10:34:10 AM org.apache.catalina.startup.ClassLoaderFactory
validateFile
AVERTISSEMENT: Problem with directory [/usr/share/tomcat7/common/classes],
exists: [false], isDirectory: [false], canRead: [false]
août 04, 2016 10:34:10 AM org.apache.catalina.startup.ClassLoaderFactory
validateFile
AVERTISSEMENT: Problem with directory [/usr/share/tomcat7/common], exists:
[false], isDirectory: [false], canRead: [false]
août 04, 2016 10:34:11 AM org.apache.catalina.startup.ClassLoaderFactory
validateFile
AVERTISSEMENT: Problem with directory [/usr/share/tomcat7/server/classes],
exists: [false], isDirectory: [false], canRead: [false]
août 04, 2016 10:34:11 AM org.apache.catalina.startup.ClassLoaderFactory
validateFile
AVERTISSEMENT: Problem with directory [/usr/share/tomcat7/server], exists:
[false], isDirectory: [false], canRead: [false]
août 04, 2016 10:34:11 AM org.apache.catalina.startup.ClassLoaderFactory
validateFile
AVERTISSEMENT: Problem with directory [/usr/share/tomcat7/shared/classes],
exists: [false], isDirectory: [false], canRead: [false]
août 04, 2016 10:34:11 AM org.apache.catalina.startup.ClassLoaderFactory
validateFile
AVERTISSEMENT: Problem with directory [/usr/share/tomcat7/shared], exists:
[false], isDirectory: [false], canRead: [false]
août 04, 2016 10:34:11 AM org.apache.coyote.AbstractProtocol init
INFOS: Initializing ProtocolHandler ["http-bio-8080"]
août 04, 2016 10:34:11 AM org.apache.catalina.startup.Catalina load
INFOS: Initialization processed in 687 ms
août 04, 2016 10:34:11 AM org.apache.catalina.core.StandardService
startInternal
INFOS: Démarrage du service Catalina
août 04, 2016 10:34:11 AM org.apache.catalina.core.StandardEngine
startInternal
INFOS: Starting Servlet Engine: Apache Tomcat/7.0.56 (Debian)
août 04, 2016 10:34:11 AM org.apache.catalina.startup.HostConfig
deployDescriptor
INFOS: Déploiement du descripteur de configuration
/etc/tomcat7/Catalina/localhost/xwiki.xml
2016-08-04 10:34:30,649 [localhost-startStop-1] WARN
ltInstalledExtensionRepository - Invalid extension
[org.xwiki.enterprise:xwiki-enterprise-ui-mainwiki-7.1.2] on namespace
[wiki:xwiki] (InvalidExtensionException: No compatible extension is
installed for dependency
[org.xwiki.platform:xwiki-platform-chart-plugin-7.1.2])
2016-08-04 10:34:30,669 [localhost-startStop-1] WARN
ltInstalledExtensionRepository - Invalid extension
[org.xwiki.contrib.forum:application-forum-ui-1.9.4]
(InvalidExtensionException: No compatible extension is installed for
dependency [org.xwiki.platform:xwiki-platform-ratings-api-6.4.4])
2016-08-04 10:34:30,670 [localhost-startStop-1] WARN
ltInstalledExtensionRepository - Invalid extension
[org.xwiki.platform:xwiki-platform-search-lucene-ui-6.4.2] on namespace
[wiki:xwiki] (InvalidExtensionException: No compatible extension is
installed for dependency
[org.xwiki.platform:xwiki-platform-search-lucene-api-6.4.2])
2016-08-04 10:34:30,738 [localhost-startStop-1] INFO
o.x.s.s.i.EmbeddedSolrInstance - Starting embedded Solr server...
2016-08-04 10:34:30,738 [localhost-startStop-1] INFO
o.x.s.s.i.EmbeddedSolrInstance - Using Solr home directory:
[/var/lib/xwiki/data/solr]
2016-08-04 10:34:34,703 [localhost-startStop-1] INFO
o.x.s.s.i.EmbeddedSolrInstance - Started embedded Solr server.
2016-08-04 10:34:34,704 [recoveryExecutor-9-thread-1-processing-x:xwiki]
WARN o.a.s.u.UpdateLog - Starting log replay
tlog{file=/var/lib/xwiki/data/solr/xwiki/data/tlog/tlog.0000000000000003809
refcount=2} active=false starting pos=0
2016-08-04 10:34:35,495 [recoveryExecutor-9-thread-1-processing-x:xwiki]
WARN o.a.s.u.UpdateLog - Log replay finished.
recoveryInfo=RecoveryInfo{adds=1 deletes=0 deleteByQuery=0 errors=0
positionOfStart=0}
août 04, 2016 10:34:37 AM org.apache.catalina.session.StandardManager doLoad
GRAVE: "IOException" lors du chargement de sessions persistantes:
java.io.WriteAbortedException: writing aborted;
java.io.NotSerializableException:
org.xwiki.model.internal.reference.DefaultStringEntityReferenceResolver
java.io.WriteAbortedException: writing aborted;
java.io.NotSerializableException:
org.xwiki.model.internal.reference.DefaultStringEntityReferenceResolver
at
java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1357)
…
(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
Caused by: java.io.NotSerializableException:
org.xwiki.model.internal.reference.DefaultStringEntityReferenceResolver
at
java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1184)
... 4 more
août 04, 2016 10:34:37 AM org.apache.catalina.session.StandardManager
startInternal
GRAVE: Exception au chargement des sessions depuis le stockage persistant
(persistent storage)
java.io.WriteAbortedException: writing aborted;
java.io.NotSerializableException:
org.xwiki.model.internal.reference.DefaultStringEntityReferenceResolver
at
java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1357)
at java.lang.Thread.run(Thread.java:745)
Caused by: java.io.NotSerializableException:
org.xwiki.model.internal.reference.DefaultStringEntityReferenceResolver
at
java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1184)
... 4 more
août 04, 2016 10:34:37 AM org.apache.catalina.startup.HostConfig
deployDescriptor
INFOS: Deployment of configuration descriptor
/etc/tomcat7/Catalina/localhost/xwiki.xml has finished in 25 891 ms
août 04, 2016 10:34:37 AM org.apache.catalina.startup.HostConfig
deployDirectory
INFOS: Déploiement du répertoire /var/lib/tomcat7/webapps/ROOT de
l'application web
août 04, 2016 10:34:37 AM org.apache.catalina.startup.HostConfig
deployDirectory
INFOS: Deployment of web application directory /var/lib/tomcat7/webapps/ROOT
has finished in 186 ms
août 04, 2016 10:34:37 AM org.apache.coyote.AbstractProtocol start
INFOS: Starting ProtocolHandler ["http-bio-8080"]
août 04, 2016 10:34:37 AM org.apache.catalina.startup.Catalina start
INFOS: Server startup in 26153 ms
I saw the GRAVE error, read that some SESSIONS.ser must be deleted, but I do
not found that file.
Any idea ?
Thanks
Cordialement
Stéphane Lassire
Chargé de l'informatique et de la communication
Tél direct : 01 42 85 81 87
Courriel : <mailto:slassire@cesap.asso.fr> slassire(a)cesap.asso.fr
I apologize for the vague topic description. I have been trying to install
XWiki on a freshly installed Ubuntu server running 14.04 for a few days and
am just getting pulled in all sorts of directions when it comes to
installation and am just getting a little agitated.
I am relatively new to Ubuntu in general. I am just looking for a guide to
install the newest version of XWiki Enterprise on Ubuntu Server 14.04 using
what I believe would be a .WAR install. (I want to avoid the stand-alone
installer since it is not recommended on production.)
All guides that I have found seem to breeze thru the installation process
and jump right into "Getting Started using the software". I am still stuck
on the actual installation and cannot seem to follow the guide without
getting thrown off by a step that makes absolutely no sense.
If someone could please point me in the right direction, it would be greatly
appreciated.
--
View this message in context: http://xwiki.475771.n2.nabble.com/Need-Help-Installing-XWiki-on-Ubuntu-Serv…
Sent from the XWiki- Users mailing list archive at Nabble.com.
hello:
This seems like a simple question, but I looked through the API and couldn't
igure it out. How do you get the data type of a field? is there a way to
know from velocity if a field is a text field, number, date, etc?
Dan
--
View this message in context: http://xwiki.475771.n2.nabble.com/How-to-get-property-data-type-tp7600548.h…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hello,
I am migrating my Debian server from Wheezy to Jessie to have the latest
xwiki stable version.
Tomcat 7.0.56
Apache 2.4.10
JAVA 8
At this moment I got some errors in catalina.out about the missing of the
file solr.xml.
How can I retrieve it ?
I look on the net without success, I reinstall the package xwiki-solr, but
this file do not came back.
root@CESAP-WIKI01:/var/lib/xwiki/data/solr# dpkg -l | grep wiki
rc xwiki-common 8.2.1 all
XWiki is a free wiki software platform written in Java with a design
emphasis
ii xwiki-enterprise-common 8.2.1 all
XWiki is a free wiki software platform written in Java with a design
emphasis
ii xwiki-enterprise-pgsql-common 8.2.1 all
XWiki is a free wiki software platform written in Java with a design
emphasis
rc xwiki-enterprise-tomcat-common 6.4.2+1 all
XWiki is a free wiki software platform written in Java with a design
emphasis
ii xwiki-enterprise-tomcat7-common 8.2.1 all
XWiki is a free wiki software platform written in Java with a design
emphasis
ii xwiki-enterprise-tomcat7-pgsql 8.2.1 all
XWiki is a free wiki software platform written in Java with a design
emphasis
ii xwiki-solr-data 8.2.1 all
XWiki is a free wiki software platform written in Java with a design
emphasis
root@CESAP-WIKI01:/var/lib/xwiki/data/solr#
Have you any idea ?
THanks a lot
Cordialement
Stéphane Lassire
Good afternoon all,
I upgraded from 8.1 to 8.2 and for some reason when I use the include or
display macro I now need to specify .WebHome at the end of every document I
want to pull in.
Most of the pages that are being pulled in are pages and not spaces, from
my understanding you only need to specify .WebHome if you pull from a space
but this does not seem to be the case.
Thanks in advance,
- Patrick