Securing website data is critical for any business and it is no exception for Sitecore websites. One of the main components for Sitecore is MongoDB which is the core storage for the xDB data. Authentication is the primary way to protect data stored in xDB. This ensures that only authorised users get access. So what … Continue reading Sitecore with MongoDB Authentication
Category: Sitecore
Setting up CRM Online Connection on Sitecore XP
Important Notice: The document is build using Sitecore XP 8.1 Update 1 and the CRM package Dynamics CRM Campaign Integration for WFFM 22 rev 151027.zip. So you are setting up CRM connection in Sitecore using the latest package and wondering how to proceed or why things are not working out. Then this guide is … Continue reading Setting up CRM Online Connection on Sitecore XP
Nuget Sitecore Habitat
Sitecore Habitat is an open source library that provides over 50 modules for Sitecore that can be used within any project. This article outlines one way of building Sitecore Habitat project into Nuget Packages using TeamCity. Note: It is assumed that: You already have configured TeamCity Server and at least one TeamCity Build Agent. You … Continue reading Nuget Sitecore Habitat
Nuget Package Create through Powershell
Nuget packages are a popular way to distribute .NET libraries both internally and externally. Creating a nuget package from a project source is easy. In the command window, navigate to the project directory nuget spec nuget pack <Project>.csproj or Nuget pack <Project>.vbproj That is quite straightforward and easy to script. However this process has two … Continue reading Nuget Package Create through Powershell