11 February, 2014

SharePoint 2010 Virtual Labs

SharePoint Server 2010
·                     Introduction to SharePoint Server 2010 Upgrade
·                     Developing KPIs and Scorecards with PerformancePoint Services
·                     Web Content Management Visual Upgrade
·                     Advanced Search Security
·                     Configuring Search UIs
·                     Connectors & Using the Business Data Connectivity (BDC) Service
·                     Federated Search
·                     Linguistics
·                     Monitoring & Systems Management
·                     PowerShell for Search
·                     Query API and Query Languages
·                     Relevancy and Ranking
·                     Search Reporting and Analytics
·                     Upgrading to FAST Search for SharePoint
·                     Backup and Restore
·                     Business Connectivity Services
·                     Business Continuity Management
·                     Configuring Remote Blob Storage FILESTREAM Provider
·                     Configuring Tenant Administration
·                     Configuring User Profile Synchronization
·                     Enterprise Search
·                     Monitoring
·                     New IT Pro Features
·                     Performance Management
·                     SharePoint Designer for IT Pros
·                     SharePoint RTM - IT PRO - Business Continuity Management
·                     SharePoint RTM - IT PRO - Installing and Configuring
·                     SharePoint RTM - IT PRO - Service Applications
·                     SharePoint RTM - IT PRO - Upgrade
·                     Windows PowerShell and SharePoint


 SharePoint Server 2010 Virtual Labs on MSDN
·                     Introduction
·                     Getting Started
·                     Connectors & Using the Business Data Connnectivity (BDC) Service
·                     Advanced Search Security
·                     Configuring Search UIs
·                     Content Processing and Property Extraction
·                     Developing a Custom Connector
·                     Fast Search Web Crawler
·                     Federated Search
·                     Linguistics
·                     People Search Administration and Management
·                     Relevancy and Ranking
·                     Customizing MySites
·                     Designing Lists and Schemas
·                     Developing a BCS External Content Type with Visual Studio
·                     Developing a Sandboxed Solution with Web Parts
·                     Developing a Visual Web Part in Visual Studio
·                     Developing Business Intelligence Applications
·                     Enterprise Content Management
·                     LINQ to SharePoint
·                     User Interface Advancements
·                     Visual Studio SharePoint Tools
·                     Workflow

31 January, 2014

the file is locked for exclusive use - SharePoint error while editing office document

It seems a long time we haven’t talk about any integration problems and respective troubleshooting associated with it.

Today’s issue is based on the same! One of my users submitted a ticket by mentioning she is facing some problems in editing the word document. Probing further I came to know this problem is restricted to only one document and same problem is happening for me also if try to edit the same. You must be curious that which issue I am talking about and what should be the exact error message. Here we go-

I can check out and check it in but if someone else try to check it out it is not possible.

The file “filename” is locked for exclusive use by “account-name”

Let me tell you something, the file is not under the check-out status, it’s not currently open also but still its saying “locked”

This issue might be happened due to following reasons-

The Microsoft Office products cashes while you were working on that particular document
PC crashes while the document is open
Loss of network connection (network issue) while document is open

Troubleshooting:-
1.   Office repair but didn’t resulted any success in my case but you can try
2.   Check the SharePoint draft location where generally SharePoint check out happens
3.   User permissions testing to check the results
4.   URL character limitation
5.   Illegal filename limitation

Resolution:-

1.   How to use this tool, its relatively easy!
2.   Down the wsp to your desktop
3.   Upload it to the site collection solution gallery
4.   Activate the solution from solution gallery
5.   Activate the solution at the site collection level
6.   Add the webpart named as “spfileunlock” to any page and you are done!

If you have any queries/questions regarding the above mentioned information then please let me know. I would be more than happy to help you as well as resolves your issues. Thank you.

30 December, 2013

Change site logo in SharePoint 2013

Today i would like to share a simple and easy topic as it’s a good idea to choose a title that describes your team or project.

1.   Open your SharePoint site
2.   Settings
3.   Site settings
4.   Under the look and feel
5.   Click title, description and logo
6.   To upload your logo from your computer
7.   Click From Computer
8.   Click Browse
9.   Locate the image and click Open

Additional option- You can also upload the image in your SharePoint document library and select it from there as- browse to the library where the image is stored, select the image and click Insert.

Click OK and that’s it.

Image will be successfully uploaded and site logo can be change without any problems.

Note: If you don’t see Title, description, and logo, you probably don’t have permission to manage that option. You need to have at least permissions equivalent to being in the Owners group on your site.

If you have any queries/questions regarding the above mentioned information then please let me know, Thank you.

29 December, 2013

Quick Fixes 1 :Avoiding the Default Custom Error Page in Sharepoint 2010

Hi Guys,

This is my first post on Amol's SharePoint Knowledge Base Blog . I will be starting my posts off with a Quick Fixes Series . The purpose of this series will be to provide immediate solutions to several niggles and quirks in SharePoint that we face on an everyday basis . I will not be diving in depth into the mechanics . Its intended to be a quick solution to your issues.

Lets get started !!

We all of us in development have faced the nagging issue at some point in time of the Default Custom Error Page, this occurs when we have deployed some new code related to web parts or event receivers , or in general for several issues , including deletion of content types etc. 



Before we run into the SharePoint ULS Logs or the event viewer or worse yet start debugging the code let's take a moment and let SharePoint show us the actual error.

Step 1:

The first step we need to take is to the change the web.config in the virtual directory of the web application which should ideally be present under a path similar to this : inetpub\wwwroot\wss\Virtual directories folder\[Central Admin PortNo]\web.config

Inside this web.config we should the following entry <customErrors> mode . This attribute will be having a value "On" . We need to change it to "Off" . Make sure you type it in the same way , the words are case-sensitive.

Step 2:

Next we need to find an attribute  <SafeMode> CallStack in the same web.config as above . This will be having a value of "false". We need to go ahead and change it to "true".

Step 3(Optional) :

Next we need to find an attribute Debug . It should be having the value "false" by default . Go ahead and change this to "true".

So the 3 changes are :
  1. CustomErrors=”Off” instead of the default CustomErrors=”On” 
  2. CallStack=”true” instead of the default CallStack=”false”
  3. Debug=”true” instead of the default Debug=”false”
Once these 3 steps are done we should ideally see a more usable page such as the one shown below :


As you can see this is a much better page . We can go ahead and google the error from here and try and find a relevant fix.

Note: 

It is very possible that even after above 3 steps we are still not able to see the error details .
In this case below are a few more troubleshooting steps that you can use to trace or view the error.

Additional Step 1:

There is another web.config present in the SharePoint hive under the _layouts folder . The layouts folder can be found under the path: C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14

Modify this web.config similar to Step 1 to have the customErrors attribute set as "Off"



Additional Step 2:
If the above does not work then we have another web.config present at the path : C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\ADMIN\
Go ahead and change the customErrors attribute to "Off" in this one as well

These 2 steps should definitely show you the detailed error page in your application if the first 3 haven't already worked.

In addition you can try and enable the default ASP.NET trace to view the errors as well.
This is done by going to web.config again in the virtual directory of your web application i.e the one at :inetpub\wwwroot\wss\Virtual directories folder\[Central Admin PortNo]\web.config

Here find the <system.web> element of the web.config file .

Under this element add the following line : <trace enabled=”true” pageOutput=”true”/>

This will give you some errors traced by ASP.NET trace as well . However this will be useful only when combined with all the above steps.

IMPORTANT NOTE : Please do not forget to perform an IISRESET after all the changes as sometimes the changes in web.config do not reflect by themselves.

Perform an IISRESET and refresh your error page and i sincerely hope you can view a more explicable page than the one you started with . 

Good Luck and watch out for more Quick Fixes from my end. 

Don't forget to comment and ask your queries in the comment section . I'll get back with my comments ASAP.