Saturday 12 July 2014

Enable Custom Errors in sharepoint

Enable Custom Errors in sharepoint
GO this path: C:\inetpub\wwwroot\wss\VirtualDirectories
Open web application-->Web.config file which you want to enable custom error
Search for customErrors
Set the customErrors mode to "Off"
--------------------------------------------------
Enable the Call Stack Trace
Search for SafeMode
Set the CallStack value of the SafeMode element to "true"
---------------------------------------------------------------
Enable Debugging Mode
Search for compilation
Set batch and debug to "true"
batch="true"
============================
Blob cache:
It can increase the performance of your site. The idea is that SharePoint will write any images, CSS or JS to a folder on disk rather than requesting the file from the content database. The following entry should be modified to enable the blob cache (more info here).
Search for BlobCache
To enable the blob cache, change enabled="false" to enabled="true" and make sure that the location exists.