Hi,
We had a problem yesterday morning with our xWiki. I exported all pages to a xar file, reinstalled xwiki and imported the xar file but after a long time it says:
No documents found in the selected archive
Any ideas?
Juan Manuel Urraburu
E-mail y MSN: juan(a)prorm.com
Web: http://www.prorm.com
Is the example AD configuration in the Wiki the right way to do things?
My understanding is that the bind_DN and bind_pass are for setting the
username and password XWiki will use to connect to the LDAP server in
order to do a search, then the UID_attr field is searched for the
username entered on the form.
If that is correct then the bind_dn and bind_pass should either be
hardcoded to a special AD user with restricted privileges, or left blank
to bind anonymously. (I see no mention of anonymous binding?)
For the first of these XWiki connects to AD ok but then seems to
'authenticate OK' whatever username/password I enter on the form even if
the user does not exist in AD at all. Is this a bug?
I can't seem to get anonymous binding to work - if I leave bind_dn and
bind_pass empty or comment out the entries entirely I always get the
'LDAP Bind failed with Exception Invalid Credentials' error message. My
LDAP server does allow anonymous binding - I've tested this in LDAP Browser.
Cheers
Neil
Hi all,
I hope I can get some help on this as I really don't know what to do...
I'm making the last preparations to move my experimental xwiki to another machine for actual use but my Imports don't work. I can make a backup.xar file using the Export tool but as I try to import it again I get a huge error message. I tried attaching it and sending it with this mail but I got it back because it was too large... The first part of it goes like this:
Error number 3232 in 3: Exception while saving attachment Backup.xar of document XWiki.Import
Wrapped Exception: Error number 3231 in 3: Exception while loading attachment Backup.xar of document XWiki.Import
Wrapped Exception: exception setting property value with CGLIB (set hibernate.cglib.use_reflection_optimizer=3Dfalse for more info) setter of com.xpn.xwiki.doc.XWikiAttachmentArchive.setArchive
com.xpn.xwiki.XWikiException: Error number 3232 in 3: Exception while saving attachment Backup.xar of document XWiki.Import
Wrapped Exception: Error number 3231 in 3: Exception while loading attachment Backup.xar of document XWiki.Import
Wrapped Exception: exception setting property value with CGLIB (set hibernate.cglib.use_reflection_optimizer=3Dfalse for more info) setter of com.xpn.xwiki.doc.XWikiAttachmentArchive.setArchive
After searching the mailinglist archives I've tried the following:
- set the -Xms512m to -Xmx521m in catalina.sh
- remove documents with Swedish carachters in their names
- made a much smaller .xar file by changing the package.xml file and only including what I left in there.
- imported old backups that I know worked back then, but it gives me the same error as all the others.
I'm using MySQL, Tomcat, XWiki 1.0 and it has all worked before... Please help!
Thanks,
//Karin
Hi all,
I've followed the install procedure for XWiki 1.1 milestone 3 - using
HSQL and OC4J. It works in that I can go to
/xwiki
and I get a page 'XWiki Installation' with links to Installation
Instructions and the XWiki Home Page.
The next step according to the documentation is to import the default
wiki XAR file. But when I go to:
xwiki/bin/admin/XWiki/XWikiPreferences
I get a '500 Internal Server Error' along with:
'Servlet error: An exception occurred. The current application
deployment descriptors do not allow for including it in this response.
Please consult the application log for details.'
The xwiki.log file shows the following message:
11:24:11,716 [AJPRequestHandler-RMICallHandler-6] WARN
action.RequestProcessor - Unhandled Exception thrown: class
com.xpn.xwiki.XWikiException
Any suggestions please?
Thanks
Neil
Hello group,
I want to use UTF-8 data in XWiki. It seems it is not recognizing it.
I tried to import unicode data to XWiki (by importing a xar file created
programatically). But export fails with an exception. I tried changing
the xwiki.cfg encoding to utf-8 but to no effect.
Regards
Roopesh
------------------
DigitalGlue, India
Hi!
I'm trying to use $xwiki.getURLContent() but I can't make it to work.
I've tried both from velocity, like this:
#set ($response = $xwiki.getURLContent("http://mysite.com"))
$response
...and invoking the xwiki code from a plugin, like this:
public String getUrlContent(String url) throws IOException {
String content = "";
try {
content = context.getWiki().getURLContent(url, context);
} catch (Exception e) {
//ooops
}
return content;
}
I've been testing with a URL that points to a web server of mine, and
according to the log, no request is done by the above code. Can anyone
tell me what I'm doing wrong?
Any help would be greatly appreciated!
:-)
Thomas
Hi,
I installed xwiki and there are no users installed and no option to create new users. The user's page is empty. The only way I found to work was to allow the superuser account but there is no other user and now way to add users.
Any ideas?
Juan Manuel Urraburu
ProRM
Uruguay
Hi all,
What is the delete access right supposed to do? It doesn't seem to do
anything currently, at least in 1.0. In the albatross skin, if I enable
delete rights in a space for a non-admin, the delete button does not
appear for that user. Thanks ...
shawn.
I am trying to run xwiki with Ingres, for this I have converted file
xwiki-db-0.9.2.sql to ingres compatible format. And I ran this file on
Ingres database. I have everything else in place: drivers, configuration in
hibernate.cfg.xml etc...
My app server is JBoss 4.0.5, so when I start xwiki I get:
17:54:49,830 FATAL [DBCPConnectionProvider] Could not create a DBCP pool
java.lang.NullPointerException
at java.util.Hashtable.put(Hashtable.java:396)
at
com.xpn.xwiki.store.DBCPConnectionProvider.configure(DBCPConnectionProvider.java:110)
at
org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:80)
at
org.hibernate.cfg.SettingsFactory.createConnectionProvider(SettingsFactory.java:349)
at
org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:58)
at
org.hibernate.cfg.Configuration.buildSettings(Configuration.java:1509)
at
org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1054)
at
com.xpn.xwiki.store.XWikiHibernateBaseStore.initHibernate(XWikiHibernateBaseStore.java:125)
so i removed connection.provider_class property from hibernate.cfg.xml.
Afterwards when i tried running xwiki i got this exception and xwiki page is
not coming:
18:11:49,447 ERROR [JDBCExceptionReporter] line 1, Table 'xwikidoc' owned by
'advait.trivedi' does not contain column 'xwd_default_template'.
.......
I noticed that this column is not part of "create table" sql but somehow it
is getting added to the table definition afterwards. Because i noticed this
column using "describe xwikidoc" mysql command. Please help
--
View this message in context: http://www.nabble.com/running-xwiki-on-Ingres-database-tf4110478.html#a1168…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi,
I'm using Albatross and I have no idea why the panels disappear in editing and administration modes. They just aren't there and it seems the Panel Wizard can't change that.
Thanks,
//Karin
-----Ursprungligt meddelande-----
Från: Sergiu Dumitriu [mailto:sergiu.dumitriu@gmail.com]
Skickat: den 2 augusti 2007 16:40
Till: xwiki-users(a)objectweb.org
Ämne: Re: resend: [xwiki-users] Backlinks in administration/editing mode
Hi,
What skin are you using, and why are the panels disappearing?
Karin Wiklund wrote:
> -----Ursprungligt meddelande-----
> Från: Karin Wiklund
> Skickat: den 17 juli 2007 09:55
> Till: 'xwiki-users(a)objectweb.org'
> Ämne: SV: [xwiki-users] Backlinks in administration/editing mode
>
>
> Hi Vincent,
>
> Hi Karin,
>
> On Jul 16, 2007, at 5:08 PM, Karin Wiklund wrote:
>
>
>> Hi,
>>
>> First; thanks to everyone who helped me make more blogs in my
>> xwiki, it works beautifully! (though it's not the most beautiful
>> code ever written...)
>>
>> Second;
>> As far as I can tell there are no links from anywhere in the
>> administration or editing modes to get back to the rest of the
>> wiki. (there are save and cancel options, but that's not the same
>> thing as 'Back') Have I missed something? If not; any hints on how
>> and where to add such links?
>> For usability purposes- to make life easier for the future admins
>> of the xwiki I'm setting up...
>>
>
> * Then I guess you have the same issue when editing pages since the
> navigation on the right disappears? How do you want to solve that?
>
> Yes, it's a problem there too. I want to solve it by constantly showing the same menu, wherever the user goes
>
> * I've noticed that on the Admin page there's a big blank space on
> the right. We shouldn't have that. Either we should put the normal
> navigation there or use the full space for the admin screens. I think
> we should use the full space.
>
> I think showing the menu at all times is better. Giving users the same way to do stuff (such as navigate) wherever they are in the system is good usability practice. I'd say it's preferable that the desicions on what panels to show, and where, should apply on every single page in the wiki. In whatever kind of mode you're in.
>
> Back to your question, you can click on the Space in the breadcrumbs
> or on the logo to go to the home page or cancel/save. What more would
> you like and where?
>
> Ah, but see the breadcrumbs aren't always showing the directory I took to get to a certain page. Example: I'm at "Main: Welcome > All Documents of this Wiki" when
> I realize I should change the rights for a certain user group, so I press Administration and the breadcrumbs are "XWiki: Administration > Preferences" and I can't use them to get back to "All Documents of this Wiki".
>
There's a Recently Visited panel that can help you here.
> The logo takes me to "Main: Welcome" which is also not the place I wanted to go.
> Say I change the rights a bit and press Save, I get directed to "XWiki: Administration". If i hit Cancel instead I end up at "Main: Welcome"
>
That's strange, cancel should also get you to Administration. Are you
sure it goes to Main?
> Not what I'm looking for when I want to get back to "Main: Welcome > All Documents of this Wiki".
> What more would I like? A set of panels (navigation or otherwise) always showing on the side of my choice.
>
> Hopefully I'll have enough time to perform a proper usability test. If my boss lets me I'd love to share the results with you.
>
> Regards,
> //Karin
>
>
> Thanks
> -Vincent
>
>
>
>