maesitus-sitecore.blogspot.com
MaeSitus - Sitecore: December 2012
http://maesitus-sitecore.blogspot.com/2012_12_01_archive.html
Wednesday, December 26, 2012. Lucene Search - Search All Fields in Sitecore. Recently, I was having troubled trying to figure out why I couldn't get any hits from querying a custom field that I have added programmatically onto Lucene Index. Now beside the customization I have added, I have used Sitecore Advanced Database Crawler that makes life easier working with Lucene and Sitecore. Subscribe to: Posts (Atom). View my complete profile. Lucene Search - Search All Fields in Sitecore.
maesitus-sitecore.blogspot.com
MaeSitus - Sitecore: SQL Server Query to find out high memory and cpu usages
http://maesitus-sitecore.blogspot.com/2014/10/sql-server-query-to-find-out-high.html
Wednesday, October 1, 2014. SQL Server Query to find out high memory and cpu usages. Taken from: http:/ social.msdn.microsoft.com/Forums/sqlserver/en-US/9802159d-518c-4e7d-bef9-ae6debdd57f7/high-memory-usage-by-sql-server-and-very-slow. Find queries that take the most CPU overall. The worst reads, disk reads. Logical Reads are memory reads. Dm exec query stats. Dm exec sql text. Find queries that have the highest average CPU usage. The worst reads, disk reads. Logical Reads are memory reads. View my comp...
maesitus-sitecore.blogspot.com
MaeSitus - Sitecore: February 2012
http://maesitus-sitecore.blogspot.com/2012_02_01_archive.html
Thursday, February 2, 2012. A interesting page about cancellable publishing wizard. http:/ sitecoregadgets.blogspot.com.au/2011/09/advanced-publish-dialog.html. Sitecore and Cores (CPU). I was recently intrigue to know if Sitecore utilities more than 2 core in the CPU. The answer is yes. Another note about Sitecore jobs, they cannot be canceled programmatically or at least without a substantial risk. Wednesday, February 1, 2012. Subscribe to: Posts (Atom). View my complete profile.
maesitus-sitecore.blogspot.com
MaeSitus - Sitecore: November 2012
http://maesitus-sitecore.blogspot.com/2012_11_01_archive.html
Monday, November 19, 2012. Sitecore Page Editor - RTE field cant be edited. To ensure Page Editor works well in Sitecore, components will need to be coded using Sitecore controls such as. So for example if my components html code as such below. Control Language="C#" AutoEventWireup="true" CodeBehind="StoryResources.ascx.cs". Inherits="Sitecore.Web.layouts.StoryResources" %. Http:/ cksource.com/forums/viewtopic.php? Subscribe to: Posts (Atom). View my complete profile. Permissions Bat for Umbraco.
maesitus-sitecore.blogspot.com
MaeSitus - Sitecore: May 2011
http://maesitus-sitecore.blogspot.com/2011_05_01_archive.html
Monday, May 30, 2011. Item Saving Pipeline change field trigger infinite loop. Recently, my colleague is required to duplicate a field value to another field. let's just say Publish To field. To do this it will need to create a custom pipeline processor on item saving. However we face a problem of infinite loop, because after changing the field value, it triggers the on item saving pipeline again. To solve this issue,. We need to set. After editing the field. Sunday, May 29, 2011. Here is the sample code.
maesitus-sitecore.blogspot.com
MaeSitus - Sitecore: October 2011
http://maesitus-sitecore.blogspot.com/2011_10_01_archive.html
Tuesday, October 25, 2011. RTE not displaying links as GUID. Often we encounter issue where Sitecore Link in RTE is presented in GUID instead its SEO friendly URL. Sitecore by default do render Sitecore Link in RTE in GUID, this is so as to allow movement of the targeted item within the content tree without the need to change the RTE itself. Fortunately Sitecore OOB also support the functionality to convert this GUID link to its SEO friendly URL. There are two ways to achieve this,. Remember to restart t...
maesitus-sitecore.blogspot.com
MaeSitus - Sitecore: October 2014
http://maesitus-sitecore.blogspot.com/2014_10_01_archive.html
Wednesday, October 1, 2014. SQL Server Query to find out high memory and cpu usages. Taken from: http:/ social.msdn.microsoft.com/Forums/sqlserver/en-US/9802159d-518c-4e7d-bef9-ae6debdd57f7/high-memory-usage-by-sql-server-and-very-slow. Find queries that take the most CPU overall. The worst reads, disk reads. Logical Reads are memory reads. Dm exec query stats. Dm exec sql text. Find queries that have the highest average CPU usage. The worst reads, disk reads. Logical Reads are memory reads. SQL Server Q...
maesitus-sitecore.blogspot.com
MaeSitus - Sitecore: April 2011
http://maesitus-sitecore.blogspot.com/2011_04_01_archive.html
Thursday, April 28, 2011. JSONNet CamelCasing Property Name. By Default when we serialize an object to a json string format, it will use the object property name along with its case. I.e. if i have a property named "MyString" = "TestString" the json format will be. MyString":"TestString"} however sometimes we want to have the property name to be camel casing like. Here is how to do it:JsonConvert.SerializeObject(obj, Formatting.None,. ContractResolver = new CamelCasePropertyNamesContractResolver()}).
maesitus-sitecore.blogspot.com
MaeSitus - Sitecore: January 2012
http://maesitus-sitecore.blogspot.com/2012_01_01_archive.html
Tuesday, January 31, 2012. Sitecore Query and Fields. Came across a site which details nicely about sitecore query and fields that support and do not support them. http:/ sitecorener.com/en/Developers/ContentDisplay/SitecoreQueries/UsingSitecoreQuery.aspx. Wednesday, January 18, 2012. Securing content and media without authentication. I will explain the situation/setup first, the potential security breach and then the solution to resolve this. The following is the setup that is required. 2 http:/ interne...