When panning to change your farm authentication method from classic to Claim based, you will need to convert all SharePoint users on the farm to support claim based authentication. The…
Category: Code
You do not have permission to open this Web site in SharePoint Designer
Theses are the Steps in troubleshooting this issue: Make sure the user have a Designer, Owner, or Administrator rights to the target site collection or web site. Make sure the site…
Powershell cleaning orphan objects in content DB
The below script help to identify and clean orphan objects in content databases. clear if ((Get-PSSnapin -Name Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue) -eq $null ) {Add-PSSnapin Microsoft.SharePoint.Powershell} $CDBs = Get-SPContentDatabase ForEach ($CDB…
Uncaught TypeError: SP.ClientContext is not a constructor
Usually this will happen when the SP.ClientContext Js file was not loaded before it is being used. in other words, a method has been called before the whole sp.js finished…
PowerShell scripts for workflows
links to good PowerShell scripts for workflows SP2007 PowerShell Script To Find Instances Of Running SharePoint Workflow $assoc = $spList.WorkflowAssociations | where {$_.BaseId -eq $workflowBase.Id.ToString() ` -and $_.RunningInstances -gt 0} if($assoc…
Remove the comma in SharePoint Numeric field
These are the options available : Turn the field into a text field, and on the field’s validation rule add the following formula: =ISNUMBER([ColumnName]+0) The down side is that…
How to resolve “content cannot be displayed in a frame” on a master page when SharePoint content is consumed inside an Iframe element
In order to resolve this issue you will need to change the master-page and add the following tags, which allows the page content to be presented inside an Iframe element.…