SharePoint 2013 Manage Services link missing
I noticed “Manage Services on Server” link is missing from Central Administration, I know it should be there under System Settings.
After google, I found its a common issue most users have and solution is “Try running IE with elevated privileges, (run as administrator)”
How to Log Errors in SharePoint Hosted Apps?
It is most common thing to log error message if some exception occurs within the code, so that user can find out what causing the error. It is straight forward if you using Server side object model. Since Hosted apps only use JavaScript object model and its bit new to many of us, not sure which namespace/class to use.
We use SP.Utilities.Utility.logCustomAppError method to log the app errors. Following is the sample code
function onFail(sender, args) {
logAppError(args.get_message() + '\n' + args.get_stackTrace());
}
function logAppError(message) {
SP.Utilities.Utility.logCustomAppError(context, message);
this.context.executeQueryAsync();
}
SharePoint 2013 App Model – How to View list With in APP
If you working on SharePoint 2013 APP, at some point you defiantly want to see list items contained within the app. Unfortunately there is no navigation to traverse to list.
To view specific list in “APP Web”, you directly type the url which specified in the following format in browser
http://<APP WEB URL>/<APP NAME>/Lists/<List Name>/AllItems.aspx
Ex: http://app-0eb6021fad963e.apps.com/sites/SP2K13/WhiteCaseEDARAPP/Lists/Calendar/AllItems.aspx
If in case you want to see the List settings,
- Click “Modify View” under List tab
- Click on “Settings” link as shown below
SharePoint 2013 - “We’re having a problem opening this location in File Explorer, Add this web site to your Trusted sites list and try again”
I got the following error, when I try to open the library within file explorer, I received following error message
“We’re having a problem opening this location in File Explorer, Add this web site to your Trusted sites list and try again”
As it says, i tried to add the current site to Trusted List, but still having the issue to open in file explorer. After goggling a bit, I found that I have to enable the “WebClient” service.
Steps
1. Go to Run, type “Services.msc” and press Enter.
2. Select “WebClient” service and start the service, if you already have.
For me it’s not showing, so I have to Install “Desktop Experience” feature. To do that
1. Go to Run, type “Server Manager” and press Enter.
2. Select Features and then select Add Features
3. Select “Desktop Experience” checkbox and select “Add Required Features” on following popup screen
4. Click “Next”
5. Click “Install”
6. Once you restart the computer, start the “WebClient” service.