sharepointking

Just another WordPress.com site

Category Archives: SharePoint 2013

Office 365: How to ‘Activate’ .wsp solution file e.g. Sandbox, workflow etc. at SharePoint Online programatically

Visit : https://www.google.co.uk/?gfe_rd=cr&ei=-jwoVPKyEs_H8gee6YHQBQ&gws_rd=ssl#q=www.t-collaboration.com+www.t-collaboration.com+Office365%3A+SharePoint+Online+%3A+Error+while+accessing+-+Office+365%3A+How+to+’Activate’+.wsp+solution+file+e.g.+Sandbox%2C+workflow+etc.+at+SharePoint+Online+programatically

Office 365 SkyDrive Pro: we can’t connect to the specific sharepoint site.. error

SharePoint 2013 Foundation Search – The chart cannot be rendered..

Error :

stateservice

Error Description:

The chart cannot be rendered. This may be due to a misconfiguration of the Microsoft SharePoint Server State Service.

Powershell Solution:

Visit site for solution: http://www.t-collaboration.com/Blog/Post/8/SharePoint-2013-Foundation-Search-%E2%80%93-The-chart-cannot-be-rendered

SharePoint Foundation 2013 – Crawl health Report Page Error (mosschart resource missing)

Issue:

 

Clicking on ‘Crawl health Report’ link from SharePoint 2013 Foundation page below error appeared

 

Error message:

 

Could not find any resources appropriate for the specified culture or the neutral culture.  Make sure “Resources.MossChart.resources” was correctly embedded or linked into assembly “App_GlobalResources.xvff1dum” at compile time, or that all the satellite assemblies required are loadable and fully signed.
crawlhealth
Resolution:
1. Copy ‘mosschart.resx’ and ‘mosschart.en-US.resx’ from SharePoint 2013 Standard/Enterprise version
2. Explore virtual directory of SharePoint Central Admin and copy both files at ‘app_globalresource…..
3. perform IIS Reset
Cheers

Allow SharePoint 2013 site to load in IFRAME

Scenario:

 

Allow SharePoint 2013 site to load into IFRAME in non-SharePoint application e.g. Dynamics CRM, ASP.NET

 

In SharePoint, Add below line in master page that you are using for your SharePoint site ( it could be possible that you have multiple master page used in different sites/subsite under web application – in that case you need to add below tag in those master pages too)

iframe

 

Now you can try to explore SharePoint site into iFrame.

 

For quick test – use below line in any of your html file –

 

<iframesrc=”http://sharepointserver/sitepage/Home.aspx”&gt;test</iframe>

</iframe>

 

Cheers!!

Missing server side dependencies – [MissingWebPart] WebPart clas…… (Looks like bug)

Issue : Missing Server side dependencies – (MissingWebpart….

missingwebpart

Reason:

When the WFE server is locked for running timer jobs, it reports all the missing server side dependencies about Central Administration site’s (normally hosted on APP server) content database, since WFE server does not host SharePoint Central Admin site. When the AP server is locked for running timer jobs, it reports all the missing server side dependencies about all other web applications’ (normally created on WFE) content databases, since AP server does not host those web apps.

Solution:

Silly but works for me 🙂

Run below command on WFE server

net stop SPTimerV4
net start SPTimerV4

Copy central administration web application virtual directory and paste at WFE server for time-being

 

Ref. Link – http://blogs.msdn.com/b/allenwang/archive/2011/10/09/sharepoint-2010-missing-server-side-dependencies.aspx

The following services are currently running as built-in identities on one or more servers: c2wts(Windows Service)

SharePoint 2013 Central Administration – View Health Analyser Issue

 

cr2wts

Script to fix above issue:

 

# Get the tracing service.

$farm = Get-SPFarm

$tracingService = $farm.Services | where {$_.Name -eq “c2wts”}

# Get the “service” managed account.

$managedAccount = Get-SPManagedAccount “domain\serviceaccount”

# Set the tracing service to run under the managed account.

$tracingService.ProcessIdentity.CurrentIdentityType = “SpecificUser”

$tracingService.ProcessIdentity.ManagedAccount = $managedAccount

$tracingService.ProcessIdentity.Update()

# This actually changes the “Run As” account of the Windows service.

$tracingService.ProcessIdentity.Deploy()

Search report pages throwing stored procedure missing issue

Issue: While clicking on different link on Search configuration page below error was appeared:

searchstoredprocedure

 

 

Possible Fix:

There is a SharePoint Job named as “Search Health Monitoring – Trace Events” to be enabled and scheduled to get the reports and the data. Once I enabled this Job the relevant missing stored procedures are automatically created in “WSS_UsageApplication” database and reports started working 🙂

Scenario: Unable to view SharePoint 2010 Administration Reports for Search

Problem: Timer Job “Search Health Monitoring – Trace Events” not enabled

Resolution: Enable the timer Job “Search Health Monitoring – Trace Events”

 

Cheers!!

Search Crawl Issue (Index folder permission issue – Bug in SharePoint 2013)

Error Message:

The filtering process has been terminated

filterprocessing

Reason:

WSS_ADMIN_WPG and WSS_WPG users did not have full permission on c:\temp and D:\Program Files\Microsoft Office Servers\15.0\Data\Office Server\Applications folder

Solutions:

 

1. Granted full control for WSS_ADMIN_WPG and WSS_WPG local users on c:\temp and D:\Program Files\Microsoft Office Servers\15.0\Data\Office Server\Applications folder

 

Other Information:

Search servers and granted full control on the c:\temp directory to wss_wpg as well as wss_admin_wpg.
The WSS_WPG group had read only on the “D:\Program Files\Microsoft Office Servers\15.0\Data\Office Server\Applications” folder. When I granted full control, search crawling began to work.
(In more, above issue can also cause while default index location is changed)

SharePoint designer 2013 – SharePoint 2013 workflow option not available

Resolution: 

Root Cause: SharePoint 2013 has hidden workflow feature call ‘WorkflowServiceStore’ and no option on user interface to activate it.

Resolution: Activate 'WorkflowServiceStore’ feature on SPECIFIC SITE feature i.e. http://server/sites/sitecollection/subsite
Command:
Enable-SPFeature -Identity WorkflowServiceStore –Url <url of your site>
Example:
Enable-SPFeature -Identity WorkflowServiceStore –Url http://<server>/sites/sitecollection/subsite

Cheers!!