Posts

SharePoint 2013 App Development Catches

Error occurred in deployment step 'Uninstall app for SharePoint': Cannot connect to the SharePoint site Make sure that this is a valid URL and the SharePoint site is running on the local computer. If you moved this project to a new computer or if the URL of the SharePoint site has changed since you created the project, update the Site URL property of the project Development Catches Can’t deploy app from VS 2012 using system account Need to give the new account DBO in the following SharePoint database Config Content DB for the Developer site collection App management service application DB So, my problem was that the account I used doesn't have DBO access to the content DB.  I used the following script on the SharePoint server and everything works fine ... Get-SPDatabase Add-SPShellAdmin -database {id} -username 

SharePoint 2013 - Display Notification on Parent Page after App Part completes its task

For a typical web part operation, you usually display some kind of message/notification when you completed a task.  So that user know the status.  The problem with the App part is that it's within an iFrame on the page.  You can't just call SP.UI.Notify.addNotification(""). The OOTB App Part support resizing of iFrame with postMessage technique only.  So, what to do ... Below is a technique that allows you to display the SharePoint popup notification on the top right corner of the parent page.  The code below is tested using JavaScript and C# in a provider-hosted app.  The basic components are as follow You have to register a custom event listener for the message event on the SharePoint page.  You can register this event on the master page so that all your App Parts can utilize the event handler You have JavaScript function that post message back to the parent On your App part post back event, you call the JavaScript to post the message back...

SharePoint Server 2016 Preview

Please click the below link to get the SharePoint 2016 Preview http://www.microsoft.com/en-us/download/details.aspx?id=48712

Announcing availability of SharePoint Server 2016 IT Preview and cloud hybrid search

https://blogs.office.com/2015/08/24/announcing-availability-of-sharepoint-server-2016-it-preview-and-cloud-hybrid-search/

SharePoint Server 2016 Installation step by step

Image
 SharePoint 2016   SharePoint Server 2016   Preview has been released earlier today, check my   previous post for Download and Product Key details , installation media is available for a trial period of 180 days. I have completed a Single-Server installation of SharePoint Server 2016 with Database server on a separate machine. I am sharing the installation details here which can be helpful for many who are new to SharePoint. The installation is similar to the older versions of SharePoint except MinRoleTopolgy which is introduced for the first time in SharePoint 2016. System Requirement I have used the below hardware and software configuration form my current installation. Hardware Requirement Scenario Processor RAM Hard disk Database Server 64-bit, 4 cores 8-24 GB 80 GB for system drive100 GB for second drive and additional drives SharePoint Server 64-bit, 4 cores 8-12 GB 80 GB for system drive80 GB for second drive Software Details: Server OS In...

Change Sharepoint 2013 Passphrase Key using Powershel

Get-Help Set-SPPassPhrase -Detailed $passphrase = ConvertTo-SecureString -String "MyPassPhraseKey" -asPlainText -Force Set-SPPassPhrase -PassPhrase $passphrase -Confirm After that u enter the same pass phrase key to confirm Hope this will helps you!!!!!!!!!!!!!!!!!!  

What specific features Improve Performance in SharePoint 2013?

SharePoint 2013 introduces following features that improves performance significantly. Distributed Cache Service Minimal Download Strategy and Shredded Storage by introducing Shredded BLOBs.