Monday, December 21, 2015

Access is denied. Verify that either the Default Content Access Account has access to this repository, or add a crawl rule to crawl this repository. If the repository being crawled is a SharePoint repository, verify that the account you are using has "Full Read" permissions on the SharePoint Web Application being crawled.

Issue:

Access is denied. Verify that either the Default Content Access Account has access to this repository, or add a crawl rule to crawl this repository. If the repository being crawled is a SharePoint repository, verify that the account you are using has "Full Read" permissions on the SharePoint Web Application being crawled.


Resolution:


1. Load regedit.exe
2. Navigate to the following key “HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa”
3. Right click on “Lsa” and create a new 32bit DWORD value
4. Naame it as “DisableLoopbackCheck”
5. Set the value to “DisableLoopbackCheck” as “1”
6. Close the registry editor.
7. Start a new crawl.



 

Friday, October 9, 2015

Redirect from one page to another Page in SharePoint 2010

Redirect from one page to another Page in SharePoint 2010

Today I got a new request from the client for the Page redirection in SharePoint.
This will be possible with adding a content Editor WebPart with the following JavaScript.


<meta http-equiv="refresh" content="0;url=http://server/sites/default.aspx">

Thursday, October 8, 2015

Updating SMTP outgoing email settings to specific Web Application in SharePoint 2010

Updating SMTP outgoing email settings to specific Web Application in SharePoint 2010:
=============================================================
 By default , we will configure the new SMTP Server details at 

Central Administration : Outgoing E-Mail Settings .




But some times, the new SMTP server details may not reflect in all the web applications.

At that time I faced email sending issues from one particular web application.

For this , we need to manually go and verify all the web application settings from Central Admin Page as mentioned below:





with this , we can verify the new SMTP server configured for all the web applications in the FARM.

Wednesday, February 18, 2015

Download a WSP Solution File from SharePoint 2010 Farm with PowerShell

Download a WSP Solution File from SharePoint 2010 Farm with PowerShell

 
 
$farm = Get-SPFarm
$file = $farm.Solutions.Item("extendeddiagnosticproviders.wsp").SolutionFile
$file.SaveAs("c:\temp\extendeddiagnosticproviders.wsp")