martes, 21 de agosto de 2012

Tips / Info #60 Sharepoint 2010

1-Botón de New Document deshabilitado

Si usted ve el botón de New Document deshabilitado

image_thumb2_thumb_thumb_thumb

deberá ir al Central Administration, y elegir Authentication Providers para el Web Application deseado.

image_thumb3_thumb_thumb_thumb

Click sobre la zona default

image_thumb4_thumb_thumb_thumb

Y habilitar la opción “Enable Client Integration”

image_thumb5_thumb_thumb_thumb

2- Highlight de una custom property en los resultados de búsqueda

Verifica lo siguiente

1) There is no

2) This location is inaccessible because you are using FORM Authentication? You need to extend the web application on another port to connect to SPD.

3) URL contains illegal characters?

4) URL contains file names i.e. default.aspx

5) Check in Central Administration > Application Management > Authentication Providers. Make sure "Enable Client Integration" is set to "Yes".

3-Access Denied al crear una nueva página

Si usted tiene permisos de full control sobre el site, pero sigue sin poder crear una página nueva, esto se debe a que no está su usuario en el grupo “Style Resource Readers”.

Este grupo permite leer la galería de master page y lectura restringuida a la librería de estilos.

Resolución: Abrir site > Site Actions > Site Settings En la sección Users and Permissions > People and Groups Click sobre Groups y seleccionar Style Resource Readers Click New > Add User En la sección de Add Users, agregar all authenticated users link Click OK

4-Mensaje: There is no data available for this report. Here are some possible reasons: (1) Web Analytics has not been enabled long enough to generate data; (2) There is insufficient data to generate this report; (3) Data logging required for this report might not be enabled; (4) Data aggregation might not be enabled at the level required for this report.

Puede ser que el proxy Usage and Health Data Collection Service Application esté detenido. Realice lo siguiente:

$UP = Get-SPServiceApplicationProxy | where {$_.DisplayName -eq “Usage and Health Data Collection Service”}

$UP.Provision()

5-Deshabilitar la opción de eliminar una lista

DltShr8

If ((Get-PSSnapIn -Name Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue) -eq $null )
{
    Add-PSSnapIn -Name Microsoft.SharePoint.PowerShell
}
 
$web = Get-SPWeb -Identity "http://sharepointsite" -AssignmentCollection $assignment
$list = $web.lists["Nombre_lista"]
$list.AllowDeletion = $true
$list.Update()

DltShr4

No hay comentarios:

Publicar un comentario