When I first started working with Sitecore. I had to work pretty hard to understand some smaller things. I decided at that time. When I write, I will try to keep thing very specific and precise. This one is about just how to create a template. I used this to memorize my steps when I…
Sitecore 10 installation with SIA
Quick Video on how to install Sitecore 10 with SIA
Be aware about SecurityProtocolType while creating request from code
If you are using code-behind to create a HttpWebRequest like var request = (HttpWebRequest)WebRequest.Create(Url); and then trying to use that request to get the WebResponse like var response = (HttpWebResponse)request.GetResponse(); This will error out as following “HttpWebRequest The underlying connection was closed: An unexpected error occurred on a send” To fix that you have to…
Want a cookie for you or foreach of you?
Ran into a weird cookie issue HttpWebRequest cookies are disabled for security by default. You need to enable it. Now if you want to add cookies from your current request, since they are seperate types, you have add it manually. Example my httpCookies – HttpContext.Current.Request.Cookies; var request = (HttpWebRequest)WebRequest.Create(url); request.CookieContainer = new CookieContainer(); //now your…
Creating Sitecore Helix structure from Scratch – Part 3: Scaffold the Test Project
This is a quick video on how to add the test project to your Helix Scaffolding.
Creating Sitecore Helix structure from Scratch – Part 2: Adding the TDS
Hi Here is the Part 2 on how to add the TDS to your helix project. If you have missed the Part 1, you can watch it here
Creating Sitecore Helix structure from Scratch – Part 1 Create the MVC project
I have started a new series on Sitecore Helix. Hopefully, you can join me on this journey.
Sitecore Helix: How to use one assembly files for all the assembly version
You are using Helix principles with your Sitecore project. Great!!! You are listening well to the Sitecore Gurus and following the divine path. You are setting up TDS, MsBuild server and Octopus deploy for you Continuous Integration. Sweet!! You might run into issue where you need to have consistent Assembly version for all the projects. You…
How to create Continuous Integration with TFS, TDS and Visual Studio for a Sitecore Helix Solution
(**Note: This might be little pre mature, but I want to capture the main process of the solution before I forget.) I have created a Sitecore project using Helix Principle. For all the TDS projects I have created a Global TDS config and that is the easiest way to handle the TDS items. We are…
Visual Studio 2019 and Gulp script for Sitecore Habitat
If you are using Visual Studio 2019 and have the Habitat project and trying to run the Gulp script, You might find that you are getting errors. It might look like this { Error: spawn C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\MSBuild\15.0\Bin\amd64\MSBuild.exe ENOENT at Process.ChildProcess._handle.onexit (internal/child_process.js:232:19) at onErrorNT (internal/child_process.js:407:16) at process._tickCallback (internal/process/next_tick.js:63:19) This is an issue with…