19 November, 2013

Error communicating with Excel Services Application - Event ids 5231 5239 5240

SharePoint monitoring is very necessary and should be done on regular basis as it will give complete idea about any exceptions/errors/if any services are not running/if any servers are not responding etc. so while monitoring the servers, I came these following errors in the event viewer-

Event 5239 (Excel Services Application) of severity 'Error' occurred 10 more time(s) and was suppressed in the event log

Event 5231 (Excel Services Application) of severity 'Error' occurred 10 more time(s) and was suppressed in the event log

To verify this, I tried opening excel dashboards on each servers (WFE’s) to find out which server is the culprit. Before doing this, make sure that excel service application is in started mode as well as app pool is running.

Coming back to dashboard point, you will find the culprit server. Just restart that specific server and check the results. In my case, it fixed the issue and reference is as below:

The above article will be indeed helpful in many scenarios as-
1.   Delayed load times for workbooks.
2.   Workbooks fail to load.
3.   This event appears in the event log: Event ID: 5231 Description: Unable to reach Excel Calculation Server <URL of machine> [Session: <session ID> User: <username>]

Possible resolutions-
1)   Restart excel calculations services
2)   Recycle app pool
3)   Make sure that the account you are using for excel calculation service is working properly i.e. not locked!
4)   Reboot the server

I hope the above info is helpful and will give some directions to resolve the issue.

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

Unable to save site as template + unexpected error has occurred

Here we go, it’s been a long time I didn’t publish an article which consist of hardcore troubleshooting! Yes, you are correct. It took some time to resolve but finally the issue has been resolved. This time it’s regarding problem occurring while ‘save site as template’ and how we found the culprit.

Problem description:-
User has raised the problem ticket by mentioning “facing problem while saving the site as template”, additionally the templates are getting saved in the solution gallery but not able to activate it also.

Error message:-
An unexpected error has occurred.

Troubleshoot issues with Microsoft SharePoint Foundation.

Correlation ID: acd95f50-4049-4625-9682-aa93aded118f

Troubleshooting done:-
Further debugging in the SP ULS logs and we found some strange facts which are based on event receivers- please refer below-

SPSolutionExporter: Microsoft.SharePoint.SPException: Feature definition with Id 77658379-50ff-4e1e-a431-5652bee07a87 failed validation

Looking for 'ReceiverAssembly' attribute in manifest root node for solution

Looking for 'ReceiverClass' attribute in manifest root node for solution

The 'Format' attribute is invalid - The value 'CheckBoxes' is invalid according to its datatype

I debug further to find out where the problem is-

I downloaded the saved wsp's from  /_catalogs/solutions/Forms/AllItems.aspx to my desktop

Renamed it to .cab

Extracted all the contents and found some interesting facts along with manifest.xml file like-

1.      List Instances
2.      Modules
3.      Property bags
4.      web template

Inside List Instances, I found ElementsFields.xml

Once i opened the above xml file, search for the checkboxes and found the following-

Further exploration on this, it seems that the checkbox attribute is invalid and needs to be modified.

Resolution:-
After this one, the solution is pretty much simple, just go ahead and remove that affected column / remove the affected content type – does not require IISRESET also.

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 issue, Thank you.

13 November, 2013

Item level permissions in SharePoint: User should add/edit/read only their own items- SharePoint 2010.


A user requested that he need to have a permission configured on the item level where used can see only their own documents or can read all the items in the list.

As a SharePoint admin the though had some to my mind are:

? Simply deny as it’s only possible with Survey list in SharePoint 2007.

? Can have created a custom list but would be a tedious task.

? Can use the target audience feature but that would be with a complex configuration.  

However, as I was exploring the features of SharePoint 2010, I checked configuration on the List settings of SharePoint 2010 Platform and MS has done a great job to extend the feature from Survey list to all types of list in SharePoint 2010.

You can configure Item level permissions in one go.  You can go to List Settings -&gt; Advance Settings and Item- Level Permissions.


You can also use PowerShell Script to manage the item level permissions:

Manage Read Access:

$SharePointSite = Get-SPWeb http://amar.com/
$list = $web.Lists[“Library Name”]
$list.ReadSecurity = 1
$list.Update()
$SharePointSite.Dispose()

Note: 1 = “Read all items”, 2 = “Read items that were created by the user”

Manage Write Access:

$SharePointSite = Get-SPWeb http://amar.com/
$list = $web.Lists[“Library Name”]
$list.WriteSecurity = 1
$list.Update()
$SharePointSite.Dispose()

Note:  1 = “Create and edit All items”, 2 = “Create items and edit items that were created by the user” 4 = “None”

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.

Applies to: SharePoint Foundation Server 2010, SharePoint Server 2010.

10 November, 2013

SharePoint: "The storage space allocation page cannot be used for sites that do not have a storage quota defined"

Issue: User was getting error message below while accessing the Storage Space Allocation page:

The storage space allocation page cannot be used for sites that do not have a storage quota defined.


Background:

While doing some regular clean-up of the sites which are over quota, I noticed that site is not having the Site Storage Allocation page in the Site collection administration page, which was quite strange though.
Accessing storage page directly via _layouts/storman.aspx page, shoes the above error message.
Troubleshooting:

Checked the same behaviour on the other site as well and it was not the same.
Tried to activate and deactivate the Office Publishing feature. Storage Allocation link was still not appearing. 


Resolution:
Checking the site storage quota we have noticed a much wired thing is that the site was given quota or you can say it was set to be 0 MB with Warning level of 0 MB.
Not sure that was done, seeming like a human error obvious.
Set the correct quota for the site and Site Storage Allocation page was back.

Applies to Products:
 SharePoint 2007, SharePoint 2010, SharePoint Server 2013


Error: The Compressed (zipped) Folder is invalid or corrupted in SharePoint 2007.

Issue: Whenever my client tried to open a .zip files from SharePoint it throws the below error message.

Background: One of my clients had zipped the .excel files in on his local desktop and uploaded to SharePoint site. There files contains the project level information and was needed to extract after two years. When he clicked the file to open from SharePoint had encountered the issue.

Now the task begins of a SharePoint admin.

Troubleshooting:

Tried to open the file from SharePoint site, no go.

Downloaded the file on desktop of the client, no go.

Tried the same steps at my end, no success.

Strange this accessing file on SharePoint server also does give the same error.

With the above basic stuff, it was clear that it is something to deal with the zip file itself as it doesn’t seems to be SharePoint issue anymore.

Being a digger try to dig some more in it and seems like something to deal with the excel documents zipped may be was in protected mode.

Client was having no clue for this.

Resolution: Tried to find the Repair tool on the internet and million thanks to Christina Marley who created a zip file repair utility which when ran has repaired the file and is available for download here.
http://gallery.technet.microsoft.com/The-Compressed-Zipped-d39407b2

Asked the user to download the files and repair them with the utility.

If you feel any difficulty in understanding the tool or have any query I would be happier to help you.

Applied to: SharePoint 2007, WinZip, and WinRAR. Windows XP.