Posts

SharePoint 2013 webapplication creation erorr: page cannot be displayed dialog box

Sometime, while trying to create webapplication in SP2013, you will see "Page cannot be displayed" dialog box error. To resolve this follow the below steps,  Inetmgr - Application Pools - Select CA app pool - Advanced settings - Process Model - Increase the Shutdown time limit to 200. Default is 90. Issue happens because during webapplication creation process, IIS shutdown in 90 seconds. Sometimes when new webapplication is created, this time is not enough and IIS shutsdown and you see the "Page cannot be displayed" error

SharePoint 2010 to 2016 Migration - Feature reference missing issue

I was in a situation to migrate SP2010 site to SP2016 manually without any tool. I have followed the typical steps of,  - Create webapplication in SP2013 - Delete default DB and test the webapplication with the DB - Now you will get reference errors and missing features error  - But if you try to delete them, you cannot. - SO GO AHEAD AND MOUNT THE DATABASE AND NOW YOU CAN DELETE THE MISSING REFERENCES Have learnt this later. Initially spent some time to delete the missing feature before mounting the db. Repeat the same step from SP2013 to SP2016.

SharePoint - Add Blank value to Choice field

Today, I had a scenario to add blank value to the existing choice field in a SharePoint list. I could do it as below,  Hold down the "Alt" key on the NUMERIC KEYPAD and type '0129'. This would create blank space and it holds got, both during creating new item and while editing the item.

HttpOnly Cookie and Secure Cookie

Today, I had a situation to explore on the restricting on the access vulnerability of the external facing SharePoint Site.  Wanted to explore on httponly cookie and secure (httpsonly) cookie. Gone through the below link and it has nice information about it. https://www.troyhunt.com/c-is-for-cookie-h-is-for-hacker/ 

Deleting list or libraries in SharePoint where delete option is not there

In SharePoint, some lists/libraries deletion option could not be found in the settings. Example: Documents, Style Library etc., Their delete option are kept as false by default. To enable Delete option, following script need to be executed, $web = Get-SPWeb <<Site Url>> $list = $web.Lists["Documents"] $list.AllowDeletion = $True $list.Update()

Link another SharePoint list from a list

Link another SharePoint List from a list view -           Create a new field/column in the parent list as calculated field and do hyperlink as ="<a href='http://<<SiteUrl>>/Lists/<<ListName>>/<<ViewName>>.aspx?Filter1="&CustomColumn1&"'>Task Status</a>" -           Create a custom view of the child list -           Customize the aspx form of the new view created and add below lines through SharePoint Designer <ParameterBinding Name=”Filter1” Location=”QueryString(Filter1)” DefaultValue=”’> -           Once this line is created, a new view will be created in the same page like <View> <Value Type> -           Now filter the child list by choosing Title – Contains {Filter1...

SharePoint Library/List url path change

We all know to change the List/Library Title from the SharePoint OOB List Settings. But to change the url of the list/library which will be usually set by internal name. Open SharePoint designer --> All Files --> Select List/Library - right click and rename and change the name of the list. Now the url will get updated. Remove the old item from the "Quick Launch" and add it again. Now you should able to see the list/library with updated url.