Posts

Showing posts from July, 2014

SharePoint 2010 to 2013 Migration steps

Image
Run data statistic scripts to SP2010 Support site collection before mounting content database. Test-SPContentDatabase -name <<contentdatabasename>> -webapplication http://<<WebApp_URL_2010>>/   Create a Web Application in SharePoint 2013 Check whether account using for migration have following accesses DB Owner Permissions on following databases. •  SharePoint_Config •  SharePoint_Admin_ [GUID] •  Content Database (newly mounted content database) "SharePoint_Shell_Access" permission on “SharePoint_Configuration” database. (For running PowerShell command.) Remove attached content database of newly created 2013 web application and mount production 2010 Content DB in SP2013 webapplication Mount-SPContentDatabase "WSS_Content" -DatabaseServer "<<DatabaseServer>>" -WebApplication http://<< WebApp_URL_2013 >>/   Converts the authentication mode of a web application from Classic to Claim ...

SharePoint 2013 Installation steps

Image
The next version of SharePoint introduces new ways to share your work and work with others, organize your projects and teams and discover people and information. So many organisations moving to SharePoint 2013. For detail hardware & software requirement please refer to this  Microsoft site Software Download SharePoint 2013 setup Please note that there are two versions to download(180 days free trail): SharePoint Server 2013 SharePoint Foundation 2013 with SP1 All Cumulative upgrades can be found below June 2014 update SharePoint Foundation 2013 KB 2881063 SharePoint Server 2013 KB 2881061 May 2014 update SharePoint Foundation 2013 KB 2863892 SharePoint Server 2013 KB 2878240 April 2014 update (Includes Service Pack 1) SharePoint Foundation 2013 KB 2880551 (SP1) SharePoint Server 2013 KB 2880552 (SP1) December 2013 update SharePoint Foundation 2013 KB 2849961 SharePoint S...

Refresh your Page using JavaScript

If you want to use JavaScript to refresh the page, you can use Post request, same as click the refresh button on the browser. I f there is any control in the form then after the form was submitted for the first time, if you click this, it will be a post method coming with the IE alert. Use  location.reload(); Get request: I f there is any control in the form then after the form was submitted for the first time, if you click this, it will still be a get method which means the form will not be submitted again. Use  window.location=window.location; Also you can use  self.location=self.location; If you want to use JavaScript to redirect to another page, you can use location.replace('webform.aspx'); => get request, does not create a history entry so browser back button disabled if no history before location.href='webform.aspx'; => get request, create a history entry so browser back button works window.location='webform.aspx'; => get requ...