User cannot upload the .SWF file in Share Point 2010

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()
 

Tags:

SharePoint

Unable to process the request. wait a few minutes and try performing this operation again

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.

Tags:

SharePoint

Admin SVC must be running in order to create deployment timer job

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.

Tags:

SharePoint Development

About the author

My name is Xavier Dilip Kumar Jayaraj having 16+ years of IT experience which includes solid experience and depth Knowledge in Application Life Cycle Management, Configuration Management, Implementation and Support using TFS on-premises and Azure DevOps. I have invested in gaining DevOps knowledege to expertise with Cloud Computing providers namely Microsoft Azure and Amazon Web Services in recent years. I am very positive to learn and adapt emerging technologies to client’s environment.

Microsoft Certified: Azure Administrator Associate

Microsoft Certified: Azure DevOps Engineer Expert

DevOps Engineer Certificate Program | Transcript 

OTP-AWSD5: AWS IoT: Developing and Deploying an Internet of Things

[PCEP-30-01] PCEP – Certified Entry-Level Python Programmer

Quotes I Like

"Failure will never overtake me if my determination to succeed is strong enough."  - Dr. APJ. Abdul Kalam

"Always be yourself, express yourself, have faith in yourself, do not go out and look for a successful personality and duplicate it." - Bruce Lee

"Technology is just a tool. In terms of getting the kids working together and motivating them, the teacher is the most important." - Bill Gates

"Innovation distinguishes between a leader and a follower." - Steve Jobs

CategoryList

Disclaimer

The information provided here is based on my expreriences, troubleshooting and online/offline findings. It can be used as is on your own risk without any warranties and I impose no rights.