Heya Folks,
Has anyone succeeded in setting up XWiki using mod_proxy_ajp.
With the default setup you get the following base URL for the wiki:
http://localhost.localdomain:8080/xwiki/bin/view/Main/WebHome
I defined a CNAME for the machine on which xwiki is installed and want to use that as base URL for the wiki:
http://xwiki.localdomain
The following at least shows the XWiki Installation page, but none of the wiki pages:
<VirtualHost xwiki.lcoaldomain:80>
ServerName xwiki.localdomain
ProxyRequests On
<Proxy http://xwiki.localdomain/*>
Order deny,allow
Allow from all
</Proxy>
ProxyPass / http://xwiki.localdomain:8080
ProxyPassReverse / http://xwiki.localdomain:8080
<Location />
Order allow,deny
Allow from all
</Location>
</VirtualHost>
How to i get this setup so the wiki pages are shown as well?
Mazzel,
Martijn.
Hi,
We have currently some work undergoing on the WYSIWYG Editor by Nam.
http://jira.xwiki.org/jira/browse/XWIKI-382
We would love some testers and get feedback about it. To test it on your
installation, you need to replace the tiny_mce and wiki_editor
directories with the one from the attachment on jira.
Here is currently my feedback about the editor:
- The style does not switch to standard text when you hit enter after a
title (that's a behavior that would be great)
- the window size is not good for the table window
- If you finish a bloc in a table with a carriage return and an empty
line the conversion fails. Here is an example of that failure.
{table}
Title 1|Title 2
abcd |abcd\\
{table}
- an empty line in a table fails to convert to wysiwyg from the wiki syntax
{table}
|
{table}
- titles should not be allowed in list
- there should be a standard text button (first item in the title list)
- windows are too slow to come up
- translations appear after a while in the windows
- clicking on an image and then the image button does not retrieve the
current image parameters.
- you need to find a way to center an image (the text 'center' as the
alignement info could add a <div align='center'> tag).
- xwiki should find the windows size ratio of an image and/or explain
to the user that setting up only the width or the height will take care
of preserving the ratio
- font size, color, and type should be changeable
- other improvements would be predefined and customizable styles in the
editor
Ludovic
--
Ludovic Dubost
XPertNet: http://www.xpertnet.fr/
Blog: http://www.ludovic.org/blog/
XWiki: http://www.xwiki.com
Skype: ldubost AIM: nvludo Yahoo: ludovic
Hello,
I upgrade my xwiki from 0.9.840 (tomcat 4) to 0.9.1252 under tomcat 5.5.
More or less it is running. But three things are not as before:
1. If I have a document called for example 'Doc.WebHome' the url in the
generated html side is then '.../Doc/' without 'WebHome'. Is this a bug
or a feature?
2. I get many velocity error messages like
Velocity [error] RHS of #set statement is null. Context will not be
modified. [line 6, column 1]
What kind of log4j config line have I to do, to get more information,
what's wrong? Currently I use the default skin!
3. If I go to a document (click on a link;-)) the whole document is
shown, but after that the browser shows an active connection and is
working several seconds before its finnished. This irritates a little
bit and I don't see any reason why this happen. Has anyone see this
behaviour by yourself?
Thanks for your time!
Bye
Frank
--
Dipl. Inform. Frank Häfemeier <frank(a)haefemeier.net>
----------------------------------------------------
All,
I was trying to find if there was a work around for the double rendering of the {pre} tag. I did find archive topic "{pre} tags not working" and it reference a Blog entry however I could not find it.
Here is my problem and I assume it is the same thing.
I have an inline form I am editing (xwiki class) and in the SheetClass I am displaying the fields and the values (it is an faq). However, whenever I display the textarea that contains the answer and it contains {pre} tags they never show up. And it messes up the formating if you save it after you click edit.
However,
...
Answer:
$doc.display('answer', 'edit', $obj)
...
Thanks,
Tony Nuzzi
With Jeremi, we are visiting Silicon Valley thanks to Google organizing
a Summer of Code Mentor Meetup.
We will be staying one week until December 22nd.
Maybe it could be possible to organize an XWiki Meetup sometime this
week if somebody can host us.
We could talk about what's currently happening on XWiki, XWiki's future,
how XWiki is currently used and what we could improve.
It could include any type of users XWiki. It could last a few hours
after work time one evening.
We will be staying a little out of town (Santa Cruz) but we have a car
and can move to the valley in the evenings.
We will also be back on Friday evening somewhere around Mountain View.
The Meetup could also be saturday morning.
Anybody interested and/or able to host the meetup ?
Ludovic
--
Ludovic Dubost
XPertNet: http://www.xpertnet.fr/
Blog: http://www.ludovic.org/blog/
XWiki: http://www.xwiki.com
Skype: ldubost AIM: nvludo Yahoo: ludovic
This works for windows, I tried, but will this work for linux?
cheers
anurag chitlangia
To Err is Human, to forgive is not COMPANY policy!
.- -. ..- .-. .- --.
-----Original Message-----
From: Artem Melentyev [mailto:melenartem@yandex.ru]
Sent: Wednesday, October 18, 2006 3:36 PM
To: xwiki-users(a)objectweb.org
Subject: Re: [xwiki-users] how to move xwiki port to 80
Anurag Chitlangia wrote:
> Currently my tomcat is pointing to 8080 port
>
> And I want it to be on 80 port. Any clues as how can I do it!
Change in tomcat/conf/server.xml
<Connector port="8080" ...
to
<Connector port="80" ...
and run tomcat on user root (administrator)
--
Artem Melentyev, UralSU, CS401
This message and the information contained herein is proprietary and confidential and subject to the Amdocs policy statement,
you may review at http://www.amdocs.com/email_disclaimer.asp
In linux, there is no difference to windows.
There could be a problem if you have a web server running on
the same machine.
Bye
Frank
>
>This works for windows, I tried, but will this work for linux?
>
>
>cheers
>anurag chitlangia
>To Err is Human, to forgive is not COMPANY policy!
>.- -. ..- .-. .- --.
>
>-----Original Message-----
>From: Artem Melentyev [mailto:melenartem@yandex.ru]
>Sent: Wednesday, October 18, 2006 3:36 PM
>To: xwiki-users(a)objectweb.org
>Subject: Re: [xwiki-users] how to move xwiki port to 80
>
>Anurag Chitlangia wrote:
>> Currently my tomcat is pointing to 8080 port
>>
>> And I want it to be on 80 port. Any clues as how can I do it!
>Change in tomcat/conf/server.xml
><Connector port="8080" ...
>to
><Connector port="80" ...
>
>and run tomcat on user root (administrator)
>
>--
> Artem Melentyev, UralSU, CS401
>
>
>This message and the information contained herein is proprietary and
>confidential and subject to the Amdocs policy statement,
>you may review at http://www.amdocs.com/email_disclaimer.asp
>
>
>
>--
>You receive this message as a subscriber of the xwiki-users(a)objectweb.org
>mailing list.
>To unsubscribe: mailto:xwiki-users-unsubscribe@objectweb.org
>For general help: mailto:sympa@objectweb.org?subject=help
>ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Currently my tomcat is pointing to 8080 port
And I want it to be on 80 port. Any clues as how can I do it!
cheers
anurag chitlangia
To Err is Human, to forgive is not COMPANY policy!
.- -. ..- .-. .- --.
This message and the information contained herein is proprietary and confidential and subject to the Amdocs policy statement,
you may review at http://www.amdocs.com/email_disclaimer.asp
Hi,
I am trying to get XWiki installed with SQL Server for the first time. When I try to access WebHome...it gives me this error
javax.servlet.ServletException: Error number 3 in 0: Could not initialize main XWiki context
Wrapped Exception: Error number 3201 in 3: Exception while saving document XWiki.XWikiUsers
Wrapped Exception: Error number 3221 in 3: Exception while saving class XWiki.XWikiUsers
Wrapped Exception: Error number 3222 in 3: Exception while saving class XWiki.XWikiUsers
Wrapped Exception: JDBC rollback failed
org.apache.struts.action.RequestProcessor.processException(RequestProcessor.java:516)
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:423)
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:226)
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1164)
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:397)
javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:127
Please help.
Thanks in advance
Renny