Cannot edit user permissions in Sharepoint 2007. Limited is greyed - Sharepoint
This is a discussion on Cannot edit user permissions in Sharepoint 2007. Limited is greyed - Sharepoint ; In Sharepoint 2007, I have one user - me - who is the administrator. When
looking at the admin web page Home > Site Settings > Permissions -
specifically titled " Edit Permissions - Home" for my account, there is ...
-
Cannot edit user permissions in Sharepoint 2007. Limited is greyed
In Sharepoint 2007, I have one user - me - who is the administrator. When
looking at the admin web page Home > Site Settings > Permissions -
specifically titled " Edit Permissions - Home" for my account, there is a
checkmark next to full control. However, I also have a checkmark (greyed
out) next to Limited Access. I tried unchecking both to see if I could truly
allow full control however I cannot change the Limited access value.
I pulled up my name in Home > User Information List > Settings > Permissions
and it indicates that I have full control - unlike the above
Users:
<Username her>
Choose Permissions
Choose the permissions you want these users or groups to have.
Permissions:
Full Control - Has full control.
Design - Can view, add, update, delete, approve, and customize.
Manage Hierarchy - Can create sites and edit pages, list items, and
documents.
Approve - Can edit and approve pages, list items, and documents.
Contribute - Can view, add, update, and delete.
Read - Can view only.
Restricted Read - Can view pages and documents, but cannot view historical
versions or review user rights information.
Limited Access - Can view specific lists, document libraries, list items,
folders, or documents when given permissions.
View Only - Members of this group can view pages, list items, and
documents. If the document has a server-side file handler available, they can
only view the document using the server-side file handler.
Please select the desired permissions.
-
Re: Cannot edit user permissions in Sharepoint 2007. Limited is greyed
Scott,
Limited Access cannot be adjusted as a permission. Basically, Limited Access
means you have been given explicit rights to either a sub-site, library, or
item somewhere else on the site. The Limited Access is supposed to be your
indicator that this has happened.
There is no way of figuring out where you have been given explicit rights --
you have to hunt and peck.
Good luck!
Paul Liebrand
"Scott" <Scott@discussions.microsoft.com> wrote in message
news:CFE0CBF8-6826-4EC3-8553-1569171AABB1@microsoft.com...
> In Sharepoint 2007, I have one user - me - who is the administrator. When
> looking at the admin web page Home > Site Settings > Permissions -
> specifically titled " Edit Permissions - Home" for my account, there is a
> checkmark next to full control. However, I also have a checkmark (greyed
> out) next to Limited Access. I tried unchecking both to see if I could
> truly
> allow full control however I cannot change the Limited access value.
> I pulled up my name in Home > User Information List > Settings >
> Permissions
> and it indicates that I have full control - unlike the above
>
> Users:
>
> <Username her>
>
> Choose Permissions
> Choose the permissions you want these users or groups to have.
>
> Permissions:
>
> Full Control - Has full control.
> Design - Can view, add, update, delete, approve, and customize.
> Manage Hierarchy - Can create sites and edit pages, list items, and
> documents.
> Approve - Can edit and approve pages, list items, and documents.
> Contribute - Can view, add, update, and delete.
> Read - Can view only.
> Restricted Read - Can view pages and documents, but cannot view historical
> versions or review user rights information.
> Limited Access - Can view specific lists, document libraries, list items,
> folders, or documents when given permissions.
> View Only - Members of this group can view pages, list items, and
> documents. If the document has a server-side file handler available, they
> can
> only view the document using the server-side file handler.
> Please select the desired permissions.
>
>
>
-
Re: Cannot edit user permissions in Sharepoint 2007. Limited is gr
I have another pice of information that might be related. When I use
Sharepoint Designer 2007 in an atemp to import a site I am getting an error
message saying
"No read/write access to import location"
Does that help in determining where permissions are jacked?
Scott
"Paul Liebrand" wrote:
> Scott,
>
> Limited Access cannot be adjusted as a permission. Basically, Limited Access
> means you have been given explicit rights to either a sub-site, library, or
> item somewhere else on the site. The Limited Access is supposed to be your
> indicator that this has happened.
>
> There is no way of figuring out where you have been given explicit rights --
> you have to hunt and peck.
>
> Good luck!
>
> Paul Liebrand
>
> "Scott" <Scott@discussions.microsoft.com> wrote in message
> news:CFE0CBF8-6826-4EC3-8553-1569171AABB1@microsoft.com...
> > In Sharepoint 2007, I have one user - me - who is the administrator. When
> > looking at the admin web page Home > Site Settings > Permissions -
> > specifically titled " Edit Permissions - Home" for my account, there is a
> > checkmark next to full control. However, I also have a checkmark (greyed
> > out) next to Limited Access. I tried unchecking both to see if I could
> > truly
> > allow full control however I cannot change the Limited access value.
> > I pulled up my name in Home > User Information List > Settings >
> > Permissions
> > and it indicates that I have full control - unlike the above
> >
> > Users:
> >
> > <Username her>
> >
> > Choose Permissions
> > Choose the permissions you want these users or groups to have.
> >
> > Permissions:
> >
> > Full Control - Has full control.
> > Design - Can view, add, update, delete, approve, and customize.
> > Manage Hierarchy - Can create sites and edit pages, list items, and
> > documents.
> > Approve - Can edit and approve pages, list items, and documents.
> > Contribute - Can view, add, update, and delete.
> > Read - Can view only.
> > Restricted Read - Can view pages and documents, but cannot view historical
> > versions or review user rights information.
> > Limited Access - Can view specific lists, document libraries, list items,
> > folders, or documents when given permissions.
> > View Only - Members of this group can view pages, list items, and
> > documents. If the document has a server-side file handler available, they
> > can
> > only view the document using the server-side file handler.
> > Please select the desired permissions.
> >
> >
> >
-
Re: Cannot edit user permissions in Sharepoint 2007. Limited is greyed
The code snippet shown below can be called from inside the specific SharePoint Page.
e.g AllItems.aspx page inside a Document Library/List.
This javascript function needs to be called on Page load event using _spBodyOnLoadFunctionNames.push method.
<script language="javascript" type="text/javascript">
_spBodyOnLoadFunctionNames.push("renameMenuItem('New', 'My New')");
_spBodyOnLoadFunctionNames.push("renameMenuItem('Settings', 'My Settings')");
function renameMenuItem(oldMenuItemName, newMenuItemName)
{
var vAnchorTag;
var vAllAnchorTags = document.getElementsByTagName('a');
if(oldMenuItemName.length!=0)
{
for (var j = 0; j < vAllAnchorTags.length; j++)
{
vAnchorTag = vAllAnchorTags[j];
if (vAnchorTag.innerText.indexOf(oldMenuItemName)!=-1)
{
vAnchorTag.innerText = newMenuItemName;
try
{
if(newMenuItemName.length != 0)
{
vAnchorTag.parentNode.previousSibling.firstChild.firstChild.alt
= newMenuItemName;
sharepoint migration india
Similar Threads
-
By Application Development in forum Sharepoint
Replies: 0
Last Post: 11-08-2007, 10:12 AM
-
By Application Development in forum Sharepoint
Replies: 0
Last Post: 10-31-2007, 01:50 PM
-
By Application Development in forum Sharepoint
Replies: 2
Last Post: 06-07-2007, 07:53 AM
-
By Application Development in forum Sharepoint
Replies: 0
Last Post: 05-21-2007, 01:34 PM
-
By Application Development in forum Sharepoint
Replies: 0
Last Post: 10-10-2006, 03:01 AM