by XDK
4. February 2015 12:27
Exception:
"Error: Access Denied" appears. User cannot upload the .SWF file".
Explanation:
Users with contributor permissions are prevented from uploading files with extensions ASPX,MASTER,XAP,SWF,JAR,ASMX,ASCX,XSN and XSF
Solution:
1. Provide "design" permission to the users trying to upload the restricted extensions
2. These restricted extensions are listed in the WebFileExtensions property of the WebApplication. The WebFileExtensions property can be programatically edited as follows
PowerShell script to list the WebFileExtensions property
$WebApp = Get-SPWebApplication https://<SharePoint Site Collection URL>/
$Extensions = $WebApp.WebFileExtensions
$Extensions | ForEach-Object {Write-Host $_}
PowerShell script to remove the .swf restriction from the WebFileExtensions property
$WebApp = Get-SPWebApplication http://<SharePoint Site Collection URL>/
$Extensions = $WebApp.WebFileExtensions
$Ext = $Extensions.Remove("swf")
$WebApp.Update()
edfa1c08-1a03-4b32-8a0a-482293f2f982|0|.0|96d5b379-7e1d-4dac-a6ba-1e50db561b04
Tags: SharePoint
SharePoint
by XDK
30. October 2014 09:03
Explanation:
Encountering the issue of an error message when we double click on a file in SharePoint to open just for viewing.
Solution:
To fix the issue, enable the following setting in the sharepoint library settings.
670b8456-6b72-4b92-9e32-46ff548b3df0|0|.0|96d5b379-7e1d-4dac-a6ba-1e50db561b04
Tags: SharePoint
SharePoint
by XDK
13. September 2013 07:35
Explanation:
You may get the "Admin SVC must be running in order to create deployment timer job" error when you deploy a SP solution or package to the sharepoint server
Solution:
Start the below windows service and deploy again.