Re: [xwiki-users] Question regarding AppServerTrustedAuthServiceImpl

2014-11-05 Thread Thomas Mortagne
On Tue, Nov 4, 2014 at 10:37 PM, Ji Zhang  wrote:
> Now I have the configuration below:
>
> 1) security setting in web.xml:
>
> 
> 
> 
> TomcatRealmUserArea
> /bin/view/XYZ/*
> 
> 
> TomcatRealmUsers
> 
> 
>
> 2) xwiki.conf:
>
> 
> xwiki.authentication.authclass=com.xpn.xwiki.user.impl.xwiki.AppServerTrustedAuthServiceImpl
>


> 3) Basic authentication:
>
> #-# Authentication type. You can use 'basic' to always use basic 
> authentication.

You are mixing several things here. All the actual authentication work
is supposed to be done by TomcatRealmUsers before accessing XWiki
(AppServerTrustedAuthServiceImpl just trust what's given by the front
auth and create the user accordingly) so there is no reason to enable
XWiki basic auth.

>
>
> The restriction works, I got 403 (HTTP Status 403 - Access to the requested 
> resource has been denied ) when I try to access:
>
> http://mymachine:9090/xWiki/bin/view/XYZ/Tutorial+1
>
> The question is:
>
> How to access this page successful?

This is not a XWiki question, the authentication is done by whatever
authenticator you are using in fron of XWiki.
AppServerTrustedAuthServiceImpl just trust it.

>
> Thanks.
>
>
> -Original Message-
> From: Ji Zhang
> Sent: Monday, November 03, 2014 1:10 PM
> To: users@xwiki.org
> Subject: RE: [xwiki-users] Question regarding AppServerTrustedAuthServiceImpl
>
> Thanks Clemens.
>
> How do I test if this authentication works? For example, I have an user 
> jsmith/password in Tomcat JDBC realm. How do I assign the viewing privileges 
> to jsmith?
>
> Thanks again.
>
> Ji
>
>
> -Original Message-
> From: users [mailto:users-boun...@xwiki.org] On Behalf Of Clemens 
> Klein-Robbenhaar
> Sent: Monday, November 03, 2014 11:42 AM
> To: users@xwiki.org
> Subject: Re: [xwiki-users] Question regarding AppServerTrustedAuthServiceImpl
>
> On 11/03/2014 05:15 PM, Ji Zhang wrote:
>> Guys,
>>
>> I am new to Xwiki.
>>
>> I have a xwiki deployed on tomcat 6. I need to use authentication against 
>> tomcat JDBC realm. AppServerTrustedAuthServiceImpl seems to my option. Are 
>> there some detailed documents or examples for using it?
>>
>
> yes: add a line do the xwiki.cfg in the WEB-INF folder, as explained here:
>
>  
> http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Authentication#HContainerAuthentication
>
> That (and restarting tomcat) should be everything you need to do.
>
> Cheers,
> Clemens
> ___
> 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] Question regarding AppServerTrustedAuthServiceImpl

2014-11-05 Thread Ji Zhang
Hi Thomas,

Thanks for your help. 

Are you saying that the Tomcat JDBC realm users will be automatically becoming 
registered xwiki users if AppServerTrustedAuthServiceImpl is turned on. Should 
we see all the users in realm in the xwiki user list if 
AppServerTrustedAuthServiceImpl is configured correctly?

Thx again.

Ji

-Original Message-
From: users [mailto:users-boun...@xwiki.org] On Behalf Of Thomas Mortagne
Sent: Tuesday, November 04, 2014 2:56 AM
To: XWiki Users
Subject: Re: [xwiki-users] Question regarding AppServerTrustedAuthServiceImpl

To know if you are authenticated from XWiki point of view look at the top right 
corner, you should see you name or id there (so probably jsmith here). If you 
are not authenticated then you should have a "login" button/link instead.

You can also enable debug log for this authenticator. Search for it in 
Administration -> Logging and set log level to TRACE or DEBUG. When this is 
done you should see details on what is happening in this authenticator in your 
application server log.

On Mon, Nov 3, 2014 at 7:10 PM, Ji Zhang  wrote:
> Thanks Clemens.
>
> How do I test if this authentication works? For example, I have an user 
> jsmith/password in Tomcat JDBC realm. How do I assign the viewing privileges 
> to jsmith?
>
> Thanks again.
>
> Ji
>
>
> -Original Message-
> From: users [mailto:users-boun...@xwiki.org] On Behalf Of Clemens 
> Klein-Robbenhaar
> Sent: Monday, November 03, 2014 11:42 AM
> To: users@xwiki.org
> Subject: Re: [xwiki-users] Question regarding 
> AppServerTrustedAuthServiceImpl
>
> On 11/03/2014 05:15 PM, Ji Zhang wrote:
>> Guys,
>>
>> I am new to Xwiki.
>>
>> I have a xwiki deployed on tomcat 6. I need to use authentication against 
>> tomcat JDBC realm. AppServerTrustedAuthServiceImpl seems to my option. Are 
>> there some detailed documents or examples for using it?
>>
>
> yes: add a line do the xwiki.cfg in the WEB-INF folder, as explained here:
>
>  
> http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Authentication#HCo
> ntainerAuthentication
>
> That (and restarting tomcat) should be everything you need to do.
>
> Cheers,
> Clemens
> ___
> 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
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Question regarding AppServerTrustedAuthServiceImpl

2014-11-05 Thread Thomas Mortagne
On Wed, Nov 5, 2014 at 6:16 PM, Ji Zhang  wrote:
> Hi Thomas,
>
> Thanks for your help.
>
> Are you saying that the Tomcat JDBC realm users will be automatically 
> becoming registered xwiki users if AppServerTrustedAuthServiceImpl is turned 
> on. Should we see all the users in realm in the xwiki user list if 
> AppServerTrustedAuthServiceImpl is configured correctly?

AppServerTrustedAuthServiceImpl will create a user as soon as its
accessing XWiki so yes it's automatically registered but no you won't
see all users, only those that conected to XWiki.

>
> Thx again.
>
> Ji
>
> -Original Message-
> From: users [mailto:users-boun...@xwiki.org] On Behalf Of Thomas Mortagne
> Sent: Tuesday, November 04, 2014 2:56 AM
> To: XWiki Users
> Subject: Re: [xwiki-users] Question regarding AppServerTrustedAuthServiceImpl
>
> To know if you are authenticated from XWiki point of view look at the top 
> right corner, you should see you name or id there (so probably jsmith here). 
> If you are not authenticated then you should have a "login" button/link 
> instead.
>
> You can also enable debug log for this authenticator. Search for it in 
> Administration -> Logging and set log level to TRACE or DEBUG. When this is 
> done you should see details on what is happening in this authenticator in 
> your application server log.
>
> On Mon, Nov 3, 2014 at 7:10 PM, Ji Zhang  wrote:
>> Thanks Clemens.
>>
>> How do I test if this authentication works? For example, I have an user 
>> jsmith/password in Tomcat JDBC realm. How do I assign the viewing privileges 
>> to jsmith?
>>
>> Thanks again.
>>
>> Ji
>>
>>
>> -Original Message-
>> From: users [mailto:users-boun...@xwiki.org] On Behalf Of Clemens
>> Klein-Robbenhaar
>> Sent: Monday, November 03, 2014 11:42 AM
>> To: users@xwiki.org
>> Subject: Re: [xwiki-users] Question regarding
>> AppServerTrustedAuthServiceImpl
>>
>> On 11/03/2014 05:15 PM, Ji Zhang wrote:
>>> Guys,
>>>
>>> I am new to Xwiki.
>>>
>>> I have a xwiki deployed on tomcat 6. I need to use authentication against 
>>> tomcat JDBC realm. AppServerTrustedAuthServiceImpl seems to my option. Are 
>>> there some detailed documents or examples for using it?
>>>
>>
>> yes: add a line do the xwiki.cfg in the WEB-INF folder, as explained here:
>>
>>
>> http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Authentication#HCo
>> ntainerAuthentication
>>
>> That (and restarting tomcat) should be everything you need to do.
>>
>> Cheers,
>> Clemens
>> ___
>> 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
> ___
> 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


[xwiki-users] cookies on Xwiki 6.2.3

2014-11-05 Thread Pascal BASTIEN
Hello,

I try to use $cookietool without success...
(I try to get my cookie with $request too but I didn't mange either)

Any help to use it?

My need, I created some cookie with javascript + onclick and I need to get them 
in my velocity code to avoid blinking during loading page (to hide some div if 
cookie is present)


Thxs

Pascal B
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Question regarding AppServerTrustedAuthServiceImpl

2014-11-05 Thread Ji Zhang
Thomas,

1) The logging level is set to be trace for all by default, but I don't see 
where anything regarding authentication in any of the log file in TOMCAT/logs 
directory ( catalina.out is the stdout log )

2) If I do the following:

-- logout from xwiki from browser
-- Keep log out
-- put URL http://techdev1:9090/XWiki/bin/view/XYZ/ into browser <== this is 
protected by realm
-- return
-- immediately getting 403

Question: why I am not getting log-in prompt?

Thanks,

Ji


-Original Message-
From: users [mailto:users-boun...@xwiki.org] On Behalf Of Ji Zhang
Sent: Wednesday, November 05, 2014 12:17 PM
To: XWiki Users
Subject: Re: [xwiki-users] Question regarding AppServerTrustedAuthServiceImpl

Hi Thomas,

Thanks for your help. 

Are you saying that the Tomcat JDBC realm users will be automatically becoming 
registered xwiki users if AppServerTrustedAuthServiceImpl is turned on. Should 
we see all the users in realm in the xwiki user list if 
AppServerTrustedAuthServiceImpl is configured correctly?

Thx again.

Ji

-Original Message-
From: users [mailto:users-boun...@xwiki.org] On Behalf Of Thomas Mortagne
Sent: Tuesday, November 04, 2014 2:56 AM
To: XWiki Users
Subject: Re: [xwiki-users] Question regarding AppServerTrustedAuthServiceImpl

To know if you are authenticated from XWiki point of view look at the top right 
corner, you should see you name or id there (so probably jsmith here). If you 
are not authenticated then you should have a "login" button/link instead.

You can also enable debug log for this authenticator. Search for it in 
Administration -> Logging and set log level to TRACE or DEBUG. When this is 
done you should see details on what is happening in this authenticator in your 
application server log.

On Mon, Nov 3, 2014 at 7:10 PM, Ji Zhang  wrote:
> Thanks Clemens.
>
> How do I test if this authentication works? For example, I have an user 
> jsmith/password in Tomcat JDBC realm. How do I assign the viewing privileges 
> to jsmith?
>
> Thanks again.
>
> Ji
>
>
> -Original Message-
> From: users [mailto:users-boun...@xwiki.org] On Behalf Of Clemens 
> Klein-Robbenhaar
> Sent: Monday, November 03, 2014 11:42 AM
> To: users@xwiki.org
> Subject: Re: [xwiki-users] Question regarding 
> AppServerTrustedAuthServiceImpl
>
> On 11/03/2014 05:15 PM, Ji Zhang wrote:
>> Guys,
>>
>> I am new to Xwiki.
>>
>> I have a xwiki deployed on tomcat 6. I need to use authentication against 
>> tomcat JDBC realm. AppServerTrustedAuthServiceImpl seems to my option. Are 
>> there some detailed documents or examples for using it?
>>
>
> yes: add a line do the xwiki.cfg in the WEB-INF folder, as explained here:
>
>  
> http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Authentication#HCo
> ntainerAuthentication
>
> That (and restarting tomcat) should be everything you need to do.
>
> Cheers,
> Clemens
> ___
> 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
___
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


Re: [xwiki-users] Question regarding AppServerTrustedAuthServiceImpl

2014-11-05 Thread Thomas Mortagne
On Wed, Nov 5, 2014 at 9:44 PM, Ji Zhang  wrote:
> Thomas,
>
> 1) The logging level is set to be trace for all by default, but I don't see 
> where anything regarding authentication in any of the log file in TOMCAT/logs 
> directory ( catalina.out is the stdout log )

No the level is not set to trace by default. The level is what you
have in the "Level" column and by default it's not set for most of
them (which means it's the default which is INFO).

>
> 2) If I do the following:
>
> -- logout from xwiki from browser
> -- Keep log out
> -- put URL http://techdev1:9090/XWiki/bin/view/XYZ/ into browser <== this is 
> protected by realm
> -- return
> -- immediately getting 403
>
> Question: why I am not getting log-in prompt?
>
> Thanks,
>
> Ji
>
>
> -Original Message-
> From: users [mailto:users-boun...@xwiki.org] On Behalf Of Ji Zhang
> Sent: Wednesday, November 05, 2014 12:17 PM
> To: XWiki Users
> Subject: Re: [xwiki-users] Question regarding AppServerTrustedAuthServiceImpl
>
> Hi Thomas,
>
> Thanks for your help.
>
> Are you saying that the Tomcat JDBC realm users will be automatically 
> becoming registered xwiki users if AppServerTrustedAuthServiceImpl is turned 
> on. Should we see all the users in realm in the xwiki user list if 
> AppServerTrustedAuthServiceImpl is configured correctly?
>
> Thx again.
>
> Ji
>
> -Original Message-
> From: users [mailto:users-boun...@xwiki.org] On Behalf Of Thomas Mortagne
> Sent: Tuesday, November 04, 2014 2:56 AM
> To: XWiki Users
> Subject: Re: [xwiki-users] Question regarding AppServerTrustedAuthServiceImpl
>
> To know if you are authenticated from XWiki point of view look at the top 
> right corner, you should see you name or id there (so probably jsmith here). 
> If you are not authenticated then you should have a "login" button/link 
> instead.
>
> You can also enable debug log for this authenticator. Search for it in 
> Administration -> Logging and set log level to TRACE or DEBUG. When this is 
> done you should see details on what is happening in this authenticator in 
> your application server log.
>
> On Mon, Nov 3, 2014 at 7:10 PM, Ji Zhang  wrote:
>> Thanks Clemens.
>>
>> How do I test if this authentication works? For example, I have an user 
>> jsmith/password in Tomcat JDBC realm. How do I assign the viewing privileges 
>> to jsmith?
>>
>> Thanks again.
>>
>> Ji
>>
>>
>> -Original Message-
>> From: users [mailto:users-boun...@xwiki.org] On Behalf Of Clemens
>> Klein-Robbenhaar
>> Sent: Monday, November 03, 2014 11:42 AM
>> To: users@xwiki.org
>> Subject: Re: [xwiki-users] Question regarding
>> AppServerTrustedAuthServiceImpl
>>
>> On 11/03/2014 05:15 PM, Ji Zhang wrote:
>>> Guys,
>>>
>>> I am new to Xwiki.
>>>
>>> I have a xwiki deployed on tomcat 6. I need to use authentication against 
>>> tomcat JDBC realm. AppServerTrustedAuthServiceImpl seems to my option. Are 
>>> there some detailed documents or examples for using it?
>>>
>>
>> yes: add a line do the xwiki.cfg in the WEB-INF folder, as explained here:
>>
>>
>> http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Authentication#HCo
>> ntainerAuthentication
>>
>> That (and restarting tomcat) should be everything you need to do.
>>
>> Cheers,
>> Clemens
>> ___
>> 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
> ___
> 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] Question regarding AppServerTrustedAuthServiceImpl

2014-11-05 Thread Thomas Mortagne
On Wed, Nov 5, 2014 at 10:13 PM, Thomas Mortagne
 wrote:
> On Wed, Nov 5, 2014 at 9:44 PM, Ji Zhang  wrote:
>> Thomas,
>>
>> 1) The logging level is set to be trace for all by default, but I don't see 
>> where anything regarding authentication in any of the log file in 
>> TOMCAT/logs directory ( catalina.out is the stdout log )
>
> No the level is not set to trace by default. The level is what you
> have in the "Level" column and by default it's not set for most of
> them (which means it's the default which is INFO).
>
>>
>> 2) If I do the following:
>>
>> -- logout from xwiki from browser
>> -- Keep log out
>> -- put URL http://techdev1:9090/XWiki/bin/view/XYZ/ into browser <== this is 
>> protected by realm
>> -- return
>> -- immediately getting 403
>>
>> Question: why I am not getting log-in prompt?

Again this has absolutely nothing to do with XWiki, XWiki is not doing
anything here it's whatever authenticator YOU setup in front of XWiki.
AppServerTrustedAuthServiceImpl just received the user id once the
actual authentication is validated and you finally ends up on XWiki.


>>
>> Thanks,
>>
>> Ji
>>
>>
>> -Original Message-
>> From: users [mailto:users-boun...@xwiki.org] On Behalf Of Ji Zhang
>> Sent: Wednesday, November 05, 2014 12:17 PM
>> To: XWiki Users
>> Subject: Re: [xwiki-users] Question regarding AppServerTrustedAuthServiceImpl
>>
>> Hi Thomas,
>>
>> Thanks for your help.
>>
>> Are you saying that the Tomcat JDBC realm users will be automatically 
>> becoming registered xwiki users if AppServerTrustedAuthServiceImpl is turned 
>> on. Should we see all the users in realm in the xwiki user list if 
>> AppServerTrustedAuthServiceImpl is configured correctly?
>>
>> Thx again.
>>
>> Ji
>>
>> -Original Message-
>> From: users [mailto:users-boun...@xwiki.org] On Behalf Of Thomas Mortagne
>> Sent: Tuesday, November 04, 2014 2:56 AM
>> To: XWiki Users
>> Subject: Re: [xwiki-users] Question regarding AppServerTrustedAuthServiceImpl
>>
>> To know if you are authenticated from XWiki point of view look at the top 
>> right corner, you should see you name or id there (so probably jsmith here). 
>> If you are not authenticated then you should have a "login" button/link 
>> instead.
>>
>> You can also enable debug log for this authenticator. Search for it in 
>> Administration -> Logging and set log level to TRACE or DEBUG. When this is 
>> done you should see details on what is happening in this authenticator in 
>> your application server log.
>>
>> On Mon, Nov 3, 2014 at 7:10 PM, Ji Zhang  wrote:
>>> Thanks Clemens.
>>>
>>> How do I test if this authentication works? For example, I have an user 
>>> jsmith/password in Tomcat JDBC realm. How do I assign the viewing 
>>> privileges to jsmith?
>>>
>>> Thanks again.
>>>
>>> Ji
>>>
>>>
>>> -Original Message-
>>> From: users [mailto:users-boun...@xwiki.org] On Behalf Of Clemens
>>> Klein-Robbenhaar
>>> Sent: Monday, November 03, 2014 11:42 AM
>>> To: users@xwiki.org
>>> Subject: Re: [xwiki-users] Question regarding
>>> AppServerTrustedAuthServiceImpl
>>>
>>> On 11/03/2014 05:15 PM, Ji Zhang wrote:
 Guys,

 I am new to Xwiki.

 I have a xwiki deployed on tomcat 6. I need to use authentication against 
 tomcat JDBC realm. AppServerTrustedAuthServiceImpl seems to my option. Are 
 there some detailed documents or examples for using it?

>>>
>>> yes: add a line do the xwiki.cfg in the WEB-INF folder, as explained here:
>>>
>>>
>>> http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Authentication#HCo
>>> ntainerAuthentication
>>>
>>> That (and restarting tomcat) should be everything you need to do.
>>>
>>> Cheers,
>>> Clemens
>>> ___
>>> 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
>> ___
>> 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



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


[xwiki-users] Livetable results hidden from everyone but Admin?

2014-11-05 Thread Jason Clemons
Hello all,

I have this odd problem and I'm hoping someone can help.  I was messing with 
permissions and now all my regular users, other than admins can't see any rows 
in ANY LiveTable.  I've checked permissions on every related object I can think 
of and can't find anything out of the ordinary, but I can't think of anything 
else that might be causing the issue.  Any help is GREATLY appreciated...

Thanks in advance,

Jason
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] cookies on Xwiki 6.2.3

2014-11-05 Thread Eduard Moraru
Hi,

Not sure I understand what the problem is exactly.

Maybe this can help: http://www.velocitycoder.com/cookies/
Found it on a random google search.

Thanks,
Eduard

On Wed, Nov 5, 2014 at 8:25 PM, Pascal BASTIEN 
wrote:

> Hello,
>
> I try to use $cookietool without success...
> (I try to get my cookie with $request too but I didn't mange either)
>
> Any help to use it?
>
> My need, I created some cookie with javascript + onclick and I need to get
> them in my velocity code to avoid blinking during loading page (to hide
> some div if cookie is present)
>
>
> Thxs
>
> 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


Re: [xwiki-users] Livetable results hidden from everyone but Admin?

2014-11-05 Thread Eduard Moraru
Hi Jason,

Maybe you have not given view rights *explicitly* to the Admin user (i.e.
the admin user has "view" checked). In this case, all other users are
denied the right.

Thanks,
Eduard

On Thu, Nov 6, 2014 at 12:55 AM, Jason Clemons 
wrote:

> Hello all,
>
> I have this odd problem and I'm hoping someone can help.  I was messing
> with permissions and now all my regular users, other than admins can't see
> any rows in ANY LiveTable.  I've checked permissions on every related
> object I can think of and can't find anything out of the ordinary, but I
> can't think of anything else that might be causing the issue.  Any help is
> GREATLY appreciated...
>
> Thanks in advance,
>
> Jason
> ___
> 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


Re: [xwiki-users] Livetable results hidden from everyone but Admin?

2014-11-05 Thread Jason Clemons
Sorry.. do you mean that if the admin has view rights = true that other
users are implicitly denied?

-Original Message-
From: users [mailto:users-boun...@xwiki.org] On Behalf Of Eduard Moraru
Sent: Wednesday, November 5, 2014 4:04 PM
To: XWiki Users
Subject: Re: [xwiki-users] Livetable results hidden from everyone but Admin?

Hi Jason,

Maybe you have not given view rights *explicitly* to the Admin user (i.e.
the admin user has "view" checked). In this case, all other users are
denied the right.

Thanks,
Eduard

On Thu, Nov 6, 2014 at 12:55 AM, Jason Clemons 
wrote:

> Hello all,
>
> I have this odd problem and I'm hoping someone can help.  I was messing
> with permissions and now all my regular users, other than admins can't see
> any rows in ANY LiveTable.  I've checked permissions on every related
> object I can think of and can't find anything out of the ordinary, but I
> can't think of anything else that might be causing the issue.  Any help is
> GREATLY appreciated...
>
> Thanks in advance,
>
> Jason
> ___
> 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
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Livetable results hidden from everyone but Admin?

2014-11-05 Thread Jason Clemons
I just checked, and it appears that NONE of the granular permissions is
checked on any of the object / pages related to LiveTable.. 

-Original Message-
From: users [mailto:users-boun...@xwiki.org] On Behalf Of Jason Clemons
Sent: Wednesday, November 5, 2014 8:34 PM
To: 'XWiki Users'
Subject: Re: [xwiki-users] Livetable results hidden from everyone but Admin?

Sorry.. do you mean that if the admin has view rights = true that other
users are implicitly denied?

-Original Message-
From: users [mailto:users-boun...@xwiki.org] On Behalf Of Eduard Moraru
Sent: Wednesday, November 5, 2014 4:04 PM
To: XWiki Users
Subject: Re: [xwiki-users] Livetable results hidden from everyone but Admin?

Hi Jason,

Maybe you have not given view rights *explicitly* to the Admin user (i.e.
the admin user has "view" checked). In this case, all other users are
denied the right.

Thanks,
Eduard

On Thu, Nov 6, 2014 at 12:55 AM, Jason Clemons 
wrote:

> Hello all,
>
> I have this odd problem and I'm hoping someone can help.  I was messing
> with permissions and now all my regular users, other than admins can't see
> any rows in ANY LiveTable.  I've checked permissions on every related
> object I can think of and can't find anything out of the ordinary, but I
> can't think of anything else that might be causing the issue.  Any help is
> GREATLY appreciated...
>
> Thanks in advance,
>
> Jason
> ___
> 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
___
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


Re: [xwiki-users] Livetable results hidden from everyone but Admin?

2014-11-05 Thread Jason Clemons
So, I'm thinking that can't be the issue.. anyone else have anything to
offer?  I'm a bit confused..

-Original Message-
From: users [mailto:users-boun...@xwiki.org] On Behalf Of Jason Clemons
Sent: Wednesday, November 5, 2014 8:53 PM
To: 'XWiki Users'
Subject: Re: [xwiki-users] Livetable results hidden from everyone but Admin?

I just checked, and it appears that NONE of the granular permissions is
checked on any of the object / pages related to LiveTable.. 

-Original Message-
From: users [mailto:users-boun...@xwiki.org] On Behalf Of Jason Clemons
Sent: Wednesday, November 5, 2014 8:34 PM
To: 'XWiki Users'
Subject: Re: [xwiki-users] Livetable results hidden from everyone but Admin?

Sorry.. do you mean that if the admin has view rights = true that other
users are implicitly denied?

-Original Message-
From: users [mailto:users-boun...@xwiki.org] On Behalf Of Eduard Moraru
Sent: Wednesday, November 5, 2014 4:04 PM
To: XWiki Users
Subject: Re: [xwiki-users] Livetable results hidden from everyone but Admin?

Hi Jason,

Maybe you have not given view rights *explicitly* to the Admin user (i.e.
the admin user has "view" checked). In this case, all other users are
denied the right.

Thanks,
Eduard

On Thu, Nov 6, 2014 at 12:55 AM, Jason Clemons 
wrote:

> Hello all,
>
> I have this odd problem and I'm hoping someone can help.  I was messing
> with permissions and now all my regular users, other than admins can't see
> any rows in ANY LiveTable.  I've checked permissions on every related
> object I can think of and can't find anything out of the ordinary, but I
> can't think of anything else that might be causing the issue.  Any help is
> GREATLY appreciated...
>
> Thanks in advance,
>
> Jason
> ___
> 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
___
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
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users