Posts

Showing posts from 2015

Missing “Apps you can add” with custom master page in SharePoint 2013

Image
After you put a custom master page on SharePoint 2013 in Add app page you don't see "Apps you can add" section? Is this is the case you have change the visibility of some sections on the custom master page. Just change visibility of following content holders to true you will see the section again.  runat="server"/>  runat="server" /> Hope this will help you in someway.

Adding Quick Launch to Page Layout

When we need to add Quick Launch to the page layout we can use following code.     ID="SiteMapDS"     runat="server"     EnableViewState="false"     SiteMapProvider="CurrentNavigation"     StartFromCurrentNode="true"     StartingNodeOffset="0"     ShowStartingNode="false"     TrimNonCurrentTypes="Heading"/>         ID="CurrentNav"     EncodeTitle="false"     runat="server"     EnableViewState="false"     DataSourceID="SiteMapDS"     UseSeparateCSS="false"     UseSimpleRendering="true"     Orientation="Vertical"     StaticDisplayLevels="2"     MaximumDynamicDisplayLevels="0"     CssClass="s4-ql"     SkipLinkText="<%$Resources:cms,masterpages_skiplinktext%>"/> Following links will help you to get some samples how to do this. http://heatherwaterman.com/2014/07/left-navigat

SharePoint Apps authorizations

Last few days I was experimenting with SharePoint App model. Provider hosted apps which is a type of app which provide by SharePoint. In this category of apps, app will have a separate web component running out side the SharePoint box which App is installed. When the out side hosted component needs access to the SharePoint list and libraries of the SharePoint farm which app is installed there is a requirement to authorize access from those hosted web components. According to the MSDN there are three different authorizations defined for SharePoint apps which can be used in this scenarios. Low Trust – Provider hosted apps for SharePoint use Azure ACS (Access Control System) to get the token which they can use to access SharePoint resources (List libraries and other resources) which app installed SharePoint farm. This use OAuth 2.0 framework and Azure ACS is the token issuer. If app is using this mechanism it can be sold in SharePoint App Store. Low trust system is there mostly for

SharePoint Configuration Mysteries

Image
Recently I faced problem when configuring SharePoint on my development machine which consumed several hour of my valuable time. Its so strange and I reinstalled SharePoint 3 times to notice the mistake which I have done. Problem was just after installing SharePoint 2013 and then when I started the configuration wizard, its just automatically ran till end which out allowing me to enter Database server which It needs to be installed. Window which didn’t appear Just after searching through the internet found that this was all due to option which I selected when installing SharePoint. When installing SharePoint at one point its giving user to select Complete or Stand-alone. In the stand-alone description its mention that this is the option which you need to select if you are using SharePoint as a developer. But as a developer when I need to have more flexibility on configuring my environment. So it is necessary to configure it on my choice of configuration. I wanted to change my op