Re: [xwiki-users] Unable to upload larger files (30MB+)

2016-09-13 Thread Polydectus84
Thomas,

Thank you for your reply.  Unfortunately, I couldn't get it to work with the
existing wiki installation.  I honestly didn't get very far, so I just
installed the newest version and made changes to the xwiki.cfg and
xwiki.properties (and I think Tomcat8) prior to installing.

It works perfectly, now.



--
View this message in context: 
http://xwiki.475771.n2.nabble.com/Unable-to-upload-larger-files-30MB-tp7601141p7601189.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] XWiki Ldap authentication

2016-09-13 Thread Thomas Mortagne
No it's not expected. Maybe you unselected the admin UI page when
asked by Extension Manager when you uninstalled it.

On Tue, Sep 13, 2016 at 7:03 PM, Dibyendu Das  wrote:
> I was able to get the LDAP working using the GUI of ldap application
> finally. However, if I uninstall both the LDAP Authenticator and the LDAP
> Application extensions from the extensions manager, the LDAP application
> still remains in the XWiki Administration page, and I am able to use the
> GUI to set the values. Is this expected?
>
> Thanks
>
> On Sat, Sep 10, 2016 at 2:53 AM, Thomas Mortagne 
> wrote:
>
>> On Fri, Sep 9, 2016 at 10:22 PM, Dibyendu Das 
>> wrote:
>> > Hi,
>> >
>> > I am trying to set up Ldap integration, and have installed both LDAP
>> > Authenticator and LDAP Application.
>> > I am using XWiki 8.2.1.
>> >
>> > In my xwiki.cfg file I have the following settings in the LDAP section:
>> >
>> > #-# LDAP authentication service
>> >
>> > xwiki.authentication.authclass=com.xpn.xwiki.user.impl.LDAP.
>> XWikiLDAPAuthServiceImpl
>> > xwiki.authentication.ldap=1
>> > xwiki.authentication.ldap.server=the.ldap.server
>> > xwiki.authentication.ldap.port=389
>> > xwiki.authentication.ldap.bind_DN=cn={0},ou=something1,
>> ou=something2,ou=something3,dc=something4,dc=something5,
>> dc=something6,dc=something7
>> > xwiki.authentication.ldap.bind_pass={1}
>> > xwiki.authentication.ldap.base_DN=
>> > xwiki.authentication.ldap.fields_mapping=last_name=sn,
>> first_name=givenName,email=mail
>> > xwiki.authentication.ldap.update_user=1
>> > xwiki.authentication.ldap.trylocal=1
>>
>> If you plan to setup LDAP using xwiki.cfg, you can get rid of the
>> "LDAP Application" which only job is to help set fields in
>> XWikiPreferences. If you remove the application empty all the fields
>> you set with it since they overwrite xwiki.cfg.
>>
>> Also you are using core LDAP authentication configuration here so you
>> don't need to install "LDAP Authenticator" extension. See
>> http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Authentication#
>> HLDAPAuthentication.
>>
>> >
>> > Rest of the lines are commented. Note that there's nothing in base_DN
>> > field. I have provided the same values
>> > in bin/admin/XWiki/XWikiPreferences?editor=globaladmin=LDAP&
>> space=XWiki.
>>
>> > But the page shows ldap.missingLdapService at the top of the page.
>>
>> There seems to be an issue with the translation associated to key
>> "ldap.missingLdapService" which should display: "LDAP service is not
>> available. Please verify your installation." which mean the
>> application cannot find the LDAP script service (used by the
>> application to retrieve values from the LDAP server). It has nothing
>> do to with whatever field you set and have nothing to do with the
>> authentication itself, it just reduce a bit the features of the UI
>> which become the static form you see.
>>
>> >
>> > Any ideas why this is happening?
>> >
>> > Thanks
>> > ___
>> > users mailing list
>> > users@xwiki.org
>> > http://lists.xwiki.org/mailman/listinfo/users
>>
>>
>>
>> --
>> Thomas Mortagne
>> ___
>> users mailing list
>> users@xwiki.org
>> http://lists.xwiki.org/mailman/listinfo/users
>>
> ___
> users mailing list
> users@xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users



-- 
Thomas Mortagne
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] XWiki Ldap authentication

2016-09-13 Thread Dibyendu Das
I was able to get the LDAP working using the GUI of ldap application
finally. However, if I uninstall both the LDAP Authenticator and the LDAP
Application extensions from the extensions manager, the LDAP application
still remains in the XWiki Administration page, and I am able to use the
GUI to set the values. Is this expected?

Thanks

On Sat, Sep 10, 2016 at 2:53 AM, Thomas Mortagne 
wrote:

> On Fri, Sep 9, 2016 at 10:22 PM, Dibyendu Das 
> wrote:
> > Hi,
> >
> > I am trying to set up Ldap integration, and have installed both LDAP
> > Authenticator and LDAP Application.
> > I am using XWiki 8.2.1.
> >
> > In my xwiki.cfg file I have the following settings in the LDAP section:
> >
> > #-# LDAP authentication service
> >
> > xwiki.authentication.authclass=com.xpn.xwiki.user.impl.LDAP.
> XWikiLDAPAuthServiceImpl
> > xwiki.authentication.ldap=1
> > xwiki.authentication.ldap.server=the.ldap.server
> > xwiki.authentication.ldap.port=389
> > xwiki.authentication.ldap.bind_DN=cn={0},ou=something1,
> ou=something2,ou=something3,dc=something4,dc=something5,
> dc=something6,dc=something7
> > xwiki.authentication.ldap.bind_pass={1}
> > xwiki.authentication.ldap.base_DN=
> > xwiki.authentication.ldap.fields_mapping=last_name=sn,
> first_name=givenName,email=mail
> > xwiki.authentication.ldap.update_user=1
> > xwiki.authentication.ldap.trylocal=1
>
> If you plan to setup LDAP using xwiki.cfg, you can get rid of the
> "LDAP Application" which only job is to help set fields in
> XWikiPreferences. If you remove the application empty all the fields
> you set with it since they overwrite xwiki.cfg.
>
> Also you are using core LDAP authentication configuration here so you
> don't need to install "LDAP Authenticator" extension. See
> http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Authentication#
> HLDAPAuthentication.
>
> >
> > Rest of the lines are commented. Note that there's nothing in base_DN
> > field. I have provided the same values
> > in bin/admin/XWiki/XWikiPreferences?editor=globaladmin=LDAP&
> space=XWiki.
>
> > But the page shows ldap.missingLdapService at the top of the page.
>
> There seems to be an issue with the translation associated to key
> "ldap.missingLdapService" which should display: "LDAP service is not
> available. Please verify your installation." which mean the
> application cannot find the LDAP script service (used by the
> application to retrieve values from the LDAP server). It has nothing
> do to with whatever field you set and have nothing to do with the
> authentication itself, it just reduce a bit the features of the UI
> which become the static form you see.
>
> >
> > Any ideas why this is happening?
> >
> > Thanks
> > ___
> > users mailing list
> > users@xwiki.org
> > http://lists.xwiki.org/mailman/listinfo/users
>
>
>
> --
> Thomas Mortagne
> ___
> users mailing list
> users@xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
>
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


[xwiki-users] Fw : Re: ACL missunderstand

2016-09-13 Thread Pascal BASTIEN
Thxs for your answers but my ACL doesn't work on my 8.2.1.

Users can not create new page or modify page on my encyclopédie space...

Here some ACL screenshot:
ACL on main wiki: https://snag.gy/dWbzZR.jpg

ACL on Encyclopédie space (on encyclopédie page and children)
https://snag.gy/vFArI1.jpg
(I tested with XwikiAllGroup but my with my editor group i have the same 
problem)

My user to test:
https://snag.gy/NPwAqg.jpg

Here my user view: https://snag.gy/6IeM4u.jpg

If someone can see what I'm wrong?


Thxs.

Pascal B


--- En date de : Ven 9.9.16, Vincent Massol  a écrit :


> > 
> > To conclude, do you know which ACL I must
> apply to have same rights thant xwiki 7.0.1?
> > (I must apply ACL right on ALL first level
> space?)
> 
> I don’t think
> that ACL have changed over versions. There are some new
> permissions like the Script permissions but globally they
> still work the same.
> 
> "Rights: Page & Children" is
> similar to space ACL”
> Correct!
> 
> And “Rights: Page” is just
> permissions for the WebHome page.
> 
> As before permissions are inherited. Although
> before we had only 1 space level, now we have several
> spaces. But the principle is the same.
> 
> Thanks
> -Vincent
> 
> 
> > 
> >
> Thxs for any help.
> > 
> > Pascal B
> >
> ___
> > users mailing list
> > users@xwiki.org
> > http://lists.xwiki.org/mailman/listinfo/users
> 
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users