Sharepoint 2010 Hosting

SharePoint Hosting – SharePoint 2013 vs SharePoint 2010

 

 SharePoint Hosting – SharePoint 2013 vs SharePoint 2010 From a document collaboration perspective, the structures of both versions are the same – so if you create a metadata architecture for documents in 2010 it should be fully upgradable to 2013. The most significant upgrades in document management are in the user experience – including drag and drop to upload documents and the ability to edit managed metadata in a datasheet view. The primary differences are in the social experiences, especially…

Read More

SharePoint 2010 Hosting :: How to Custom Calendar with JQuery?

 

 Here I will explain how to use the SharePoint 2013 calendar color overlay, to give a different color for each category.  Calendar color overlay in SharePoint is by stacking several views that have been created with the filter each category, but it also set up an empty view for displaying data named Calendar Canvas as the foundation to be coated view-view is already filtered by category. Items in the calendar will be color coded based on their assigned category. This…

Read More

SharePoint Hosting – PowerShell Script to Edit User Profile Properties

 

 PowerShell Script to Edit User Profile Properties The two most widely used user profile property types in SharePoint 2010 are “string (Single Value)” and “string (Multi Value)”. Single value property types work in a similar way to “Single line of text” columns in lists and libraries – examples being Name, Department, Job Type, etc. Multi value property types use the Managed Metadata service to allow the multiple input of new or previously used values from the Keywords term set –…

Read More

Restore-SPSite problems in sharepoint

 

 I have a requirement change the site collection URL (path based). Best recommended way to change the site collection URL in sharepoint 2010 is backup and restore. I followed the same, first I took the backup and then trying to restore the same but it giving exception. Observation: Restoration fails if any of the URL characters exceed the limit of 260 characters. So, please check the URL characters before proceeds with backup and restore. Below script will give the accurate…

Read More

SharePoint Hosting :: How to Solve Error Occurred in Deployment Step ‘Activate Features’

 

 Today, we will explain about How to Solve Error Occurred in Deployment Step ‘Activate Features’. This error can appear when you try to deploy your SharePoint solution, but this message has no detailed data so it is not obvious how to solve it. There are few things you can do to remove this error: 1. If you changed namespace or assembly name or class name in your solution, you have to check that you have the same namespace and assembly…

Read More

SharePoint Hosting :: How to Solve SharePoint 2013 Search Crawl Access is Denied

 

 Error Message : Access is denied. Verify that either the Default Content Access Account has access to this repository, or add a crawl rule to crawl this repository. If the repository being crawled is a SharePoint repository, verify that the account you are using has “Full Read” permissions on the SharePoint Web Application being crawled. ( Error from SharePoint site: HttpStatusCode Unauthorized The request failed with HTTP status 401: Unauthorized. ) Context: Application ‘Search Service Application’, Catalog ‘Portal_Content’ Details: Access is…

Read More

SharePoint 2013 Hosting :: Working with Survey List and debugging ECMA Script

 

 The list schema for survey list is quite different from the custom lists. Every question is added as the list column(field) and every response to questions is added as list item. To retrieve the survey question and and to submit the response to list via client object model, do the following. 1)Load the reference of sp.js and Load the address of function to be called as below SP.SOD.executeOrDelayUntilScriptLoaded(DisplaySurveyQ,’SP.js’); 2)Define the function.

3) Create callback handlers in this function

4)Execute an async…

Read More